ex/pl0.thy
author nipkow
Tue, 16 Aug 1994 09:57:51 +0200
changeset 104 a0e6613dfbee
parent 56 385d51d74f71
permissions -rw-r--r--
allow long_id for reference to type in primrec. Doesn't work yet, though, because of problems with the autoloader.

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