doc-src/Tutorial/CodeGen/expr
author berghofe
Mon, 16 Dec 2002 13:43:11 +0100
changeset 13755 a9bb54a3cfb7
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Added mk_int and mk_list.

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