doc-src/Tutorial/Misc/Fib.thy
author wenzelm
Mon, 04 Oct 1999 21:45:10 +0200
changeset 7703 6b3424e877bd
parent 5377 efb799c5ed3c
permissions -rw-r--r--
proper dependencies of all theories and packages;

Fib = WF_Rel +
consts fib  :: nat => nat
recdef fib "measure(%n. n)"
    "fib 0 = 0"
    "fib 1 = 1"
    "fib (Suc(Suc x)) = fib x + fib (Suc x)"
end