1
0
forked from GitHub/gf-core
Files
gf-core/gf-book/examples/chapter8/CalculatorP.gf
2011-01-11 15:46:43 +00:00

15 lines
281 B
Plaintext

concrete CalculatorP of Calculator = open Prelude in {
lincat
Exp = SS ;
lin
EPlus = infix "+" ;
EMinus = infix "-" ;
ETimes = infix "*" ;
EDiv = infix "/" ;
EInt i = i ;
oper
infix : Str -> SS -> SS -> SS = \f,x,y ->
ss ("(" ++ x.s ++ f ++ y.s ++ ")") ;
}