doc-src/Tutorial/CodeGen/expr
author berghofe
Mon, 10 Dec 2001 15:26:42 +0100
changeset 12443 e56ab6134b41
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Turned subcls1 into an inductive relation to make it executable.

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