ex/PL0.thy
author lcp
Thu, 21 Apr 1994 11:28:32 +0200
changeset 68 acad709cad5d
parent 56 385d51d74f71
child 81 fded09018308
permissions -rw-r--r--
tidied definitions and proofs

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

Syntax of propositional logic formulae.
*)

PL0 = HOL +
types 'a pl
arities pl :: (term)term
consts
    false	:: "'a pl"
    "->"	:: "['a pl,'a pl] => 'a pl"	(infixr 90)
    var		:: "'a => 'a pl"		("#_")
end