src/LCF/ex/Ex3.thy
author paulson
Thu, 03 Jul 2003 18:07:50 +0200
changeset 14089 7b34f58b1b81
parent 4905 be73ddff6c5a
child 17248 81bf91654e73
permissions -rw-r--r--
converted UNITY/Comp/{AllocImpl,Client} to Isar scripts


(*** Addition with fixpoint of successor ***)

Ex3 = LCF +

consts
  s	:: "'a => 'a"
  p	:: "'a => 'a => 'a"

rules
  p_strict	"p(UU) = UU"
  p_s		"p(s(x),y) = s(p(x,y))"

end