ex/pl0.thy
author lcp
Thu, 13 Oct 1994 09:39:15 +0100
changeset 153 c0ff8f1ebc16
parent 56 385d51d74f71
permissions -rw-r--r--
HOL/HOL.ML/selectI2: new rule for descriptions

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