doc-src/Tutorial/CodeGen/expr
author oheimb
Tue, 30 Jan 2001 18:48:33 +0100
changeset 11001 6754fa0f2af7
parent 5377 efb799c5ed3c
permissions -rw-r--r--
corrected file name suffixes

types 'v binop = 'v => 'v => 'v
datatype ('a,'v) expr = Cex 'v
                      | Vex 'a
                      | Bex ('v binop)  (('a,'v) expr) (('a,'v) expr)