summaryrefslogtreecommitdiff
path: root/testsuite/runtime/parser/Literals.gf
blob: 0962c0356fd0906a188175c38d31330d529d2bd7 (plain)
1
2
3
4
5
6
7
8
9
10
abstract Literals = {
  cat S ;
  
  fun IsString  : String -> S ;
      IsInteger : Int    -> S ;
      IsFloat   : Float  -> S ;
      
      IsEq : Int -> S ;

}