mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
8 lines
137 B
Plaintext
8 lines
137 B
Plaintext
abstract Calculator = {
|
|
flags startcat = Exp ;
|
|
cat Exp ;
|
|
fun
|
|
EPlus, EMinus, ETimes, EDiv : Exp -> Exp -> Exp ;
|
|
EInt : Int -> Exp ;
|
|
}
|