doc-src/Tutorial/CodeGen/expr
author paulson
Thu, 24 Jul 2003 16:41:40 +0200
changeset 14128 fd6d20c2371c
parent 5377 efb799c5ed3c
permissions -rw-r--r--
header comment

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