doc-src/Tutorial/Datatype/mutnested
author paulson
Thu, 27 Feb 2003 18:21:42 +0100
changeset 13836 6d0392fc6dc5
parent 9255 2ceb11a2e190
permissions -rw-r--r--
restored some deleted lemmas

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)