with debug
[prop.git] / prop-src / simple.pcc
blobccf05a0aa80482aa418be557a430d771e1b4c6f6
1 datatype Exp = INT int        => _
2              | ADD (Exp, Exp) => _ "+" _
3              | SUB (Exp, Exp) => _ "-" _
4              | MUL (Exp, Exp) => _ "*" _ 
5              | DIV (Exp, Exp) => _ "/" _ 
6              ;