ex/PL0.ML
author convert-repo
Thu, 23 Jul 2009 14:03:20 +0000
changeset 255 435bf30c29a5
parent 56 385d51d74f71
permissions -rw-r--r--
update tags

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