1
0
forked from GitHub/gf-core
Files
gf-core/testsuite/runtime/parser/LiteralsCnc.gf
2010-04-23 20:46:14 +00:00

10 lines
222 B
Plaintext

concrete LiteralsCnc of Literals = {
lincat S = Str ;
lin IsString x = x.s ++ "is string" ;
lin IsInteger x = x.s ++ "is integer" ;
lin IsFloat x = x.s ++ "is float" ;
lin IsEq x = x.s ++ "=" ++ x.s ;
}