doc-src/Tutorial/Datatype/mutnested
author paulson
Tue, 22 Aug 2000 10:59:15 +0200
changeset 9675 0fe0dce56bd8
parent 9255 2ceb11a2e190
permissions -rw-r--r--
updated to latest versions of ttbox and ttbreak

datatype
    'a aexp = IF ('a bexp) ('a aexp) ('a aexp)
            | Sum ('a aexp list)
            | Diff ('a aexp) ('a aexp)
            | Var 'a
            | Num nat
and 'a bexp = Less ('a aexp) ('a aexp)
            | And ('a bexp) ('a bexp)
            | Neg ('a bexp)