ex/pl0.thy
author nipkow
Sun, 19 Feb 1995 15:04:39 +0100
changeset 215 5f9d7ed4ea0c
parent 56 385d51d74f71
permissions -rw-r--r--
Reorganized/optimized datatype definitions.

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