mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
10 lines
144 B
Plaintext
10 lines
144 B
Plaintext
abstract Literals = {
|
|
cat S ;
|
|
fun
|
|
mkString : String -> S ;
|
|
mkInt : Int -> S ;
|
|
mkFloat : Float -> S ;
|
|
|
|
and : S -> S -> S ;
|
|
}
|