Files
gf-core/examples/mathtext/Symbols.gf
2009-12-18 11:08:39 +00:00

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 ;
}