ex/pl0.thy
author nipkow
Fri, 03 Feb 1995 16:21:45 +0100
changeset 209 cc7ad90039b9
parent 56 385d51d74f71
permissions -rw-r--r--
Add dependence on ex/String.thy/ML

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