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

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

Syntax of propositional logic formulae.
*)

PL0 = HOL +
datatype
    'a pl = false | var ('a) ("#_") | "->" ('a pl,'a pl) (infixr 90)
end