ex/pl0.ML
author nipkow
Tue, 16 Aug 1994 09:57:51 +0200
changeset 104 a0e6613dfbee
parent 56 385d51d74f71
permissions -rw-r--r--
allow long_id for reference to type in primrec. Doesn't work yet, though, because of problems with the autoloader.

(*  Title: 	HOL/ex/pl0.ML
    ID:         $Id$
    Author: 	Tobias Nipkow
    Copyright   1994  TU Muenchen

Inductive definition of propositional logic formulae.
*)

structure PL0 = DeclaredDatatype
(val base = PL0.thy
 val data = "'a pl = false | var('a) | \"op->\"('a pl,'a pl)"
);