forked from GitHub/gf-core
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 ;
|
|
}
|