ex/PL0.thy
author clasohm
Fri, 08 Jul 1994 12:01:55 +0200
changeset 91 a94029edb01f
parent 81 fded09018308
permissions -rw-r--r--
added mixfix annotations to constructor declarations

(*  Title: 	HOL/ex/pl0.thy
    ID:         $Id$
    Author: 	Tobias Nipkow
    Copyright   1994  TU Muenchen

Syntax of propositional logic formulae.
*)

PL0 = HOL +
datatype
    'a pl = false | var ('a) ("#_") | "->" ('a pl,'a pl) (infixr 90)
end