repo.or.cz
/
prop.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gcc config
[prop.git]
/
prop-src
/
simple.pcc
blob
420061288d2583feac0601ea5e6ae44f4f309816
1
datatype Exp = INT int
2
| ADD (Exp, Exp)
3
| SUB (Exp, Exp)
4
| MUL (Exp, Exp)
5
| DIV (Exp, Exp)
6
;
7
8
datatype Q = Some int | None ;