ex/pl0.thy
author lcp
Tue, 06 Sep 1994 10:56:54 +0200
changeset 135 a06a2d930a03
parent 56 385d51d74f71
permissions -rw-r--r--
HOL/ex/PropLog.thy: tidied

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