ex/pl0.thy
author clasohm
Wed, 21 Jun 1995 15:12:40 +0200
changeset 249 492493334e0f
parent 56 385d51d74f71
permissions -rw-r--r--
removed \...\ inside strings

(*  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