doc-src/Tutorial/CodeGen/expr
author wenzelm
Fri, 14 Jun 2002 13:24:32 +0200
changeset 13213 833ffcb2e92d
parent 5377 efb799c5ed3c
permissions -rw-r--r--
IsarTut;

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