mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
9 lines
183 B
Plaintext
9 lines
183 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" ;
|
|
|
|
} |