ex/PL0.ML
author wenzelm
Wed, 21 Sep 1994 15:40:41 +0200
changeset 145 a9f7ff3a464c
parent 56 385d51d74f71
permissions -rw-r--r--
minor cleanup, added 'axclass', 'instance', 'syntax', 'defs' sections;

(*  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)"
);