summaryrefslogtreecommitdiff
path: root/examples/tutorial/calculator/Calculator.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-09-04 07:57:50 +0000
committeraarne <aarne@cs.chalmers.se>2007-09-04 07:57:50 +0000
commite9985271e2d03e789e77b212526810aa2055ebe0 (patch)
treeecb4e84ec4ee8a331589da1ee48a17fead2ffe54 /examples/tutorial/calculator/Calculator.gf
parent14f185d326590f6656cf7b8c734fbfc87cf0605b (diff)
div
Diffstat (limited to 'examples/tutorial/calculator/Calculator.gf')
-rw-r--r--examples/tutorial/calculator/Calculator.gf2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tutorial/calculator/Calculator.gf b/examples/tutorial/calculator/Calculator.gf
index 0d67c1e21..c2fbcd1bc 100644
--- a/examples/tutorial/calculator/Calculator.gf
+++ b/examples/tutorial/calculator/Calculator.gf
@@ -9,7 +9,7 @@ abstract Calculator = {
PDecl : Exp -> (Var -> Prog) -> Prog ;
PAss : Var -> Exp -> Prog -> Prog ;
- EPlus, EMinus, ETimes : Exp -> Exp -> Exp ;
+ EPlus, EMinus, ETimes, EDiv : Exp -> Exp -> Exp ;
EInt : Int -> Exp ;
EVar : Var -> Exp ;