src/LCF/ex/Ex3.thy
author wenzelm
Sat, 03 Sep 2005 17:54:10 +0200
changeset 17248 81bf91654e73
parent 4905 be73ddff6c5a
child 19755 90f80de04c46
permissions -rw-r--r--
converted to Isar theory format;


(* $Id$ *)

header {* Addition with fixpoint of successor *}

theory Ex3
imports LCF
begin

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

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

ML {* use_legacy_bindings (the_context ()) *}

end