doc-src/TutorialI/Misc/fakenat.thy
author wenzelm
Wed, 02 Aug 2000 19:40:14 +0200
changeset 9502 50ec59aff389
parent 9494 44fefb6e9994
child 9541 d17c0b34d5c8
permissions -rw-r--r--
adapted deriv;

(*<*)
theory fakenat = Main:;
(*>*)

text{*\noindent
The type \isaindexbold{nat}\index{*0|bold}\index{*Suc|bold} of natural
numbers is predefined and behaves like
*}

datatype nat = "0" | Suc nat
(*<*)
end
(*>*)