doc-src/Tutorial/Misc/Fib.thy
author wenzelm
Mon, 28 Aug 2000 13:52:38 +0200
changeset 9695 ec7d7f877712
parent 5377 efb799c5ed3c
permissions -rw-r--r--
proper setup of iman.sty/extra.sty/ttbox.sty;

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