mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
abstract Symbols = {
|
|
|
|
cat
|
|
Exp ;
|
|
|
|
fun
|
|
-- EInt : Int -> Expp ; --- clashes with EVar...
|
|
EVar : String -> Exp ;
|
|
EIn, EPlus, ETimes, EEq, EGt, ELt : Exp -> Exp -> Exp ;
|
|
}
|