src/Doc/Tutorial/Misc/fakenat.thy
author wenzelm
Tue, 28 Aug 2012 18:57:32 +0200
changeset 48985 5386df44a037
parent 16417 doc-src/TutorialI/Misc/fakenat.thy@9bc16273c2d4
child 56260 3d79c132e657
permissions -rw-r--r--
renamed doc-src to src/Doc; renamed TutorialI to Tutorial;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     1
(*<*)
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 11418
diff changeset
     2
theory fakenat imports Main begin;
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     3
(*>*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     4
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     5
text{*\noindent
11418
53a402c10ba9 indexing tweaks
paulson
parents: 9541
diff changeset
     6
The type \tydx{nat} of natural
53a402c10ba9 indexing tweaks
paulson
parents: 9541
diff changeset
     7
numbers is predefined to have the constructors \cdx{0} and~\cdx{Suc}.  It  behaves as if it were declared like this:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     8
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     9
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    10
datatype nat = 0 | Suc nat
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    11
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    12
end
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    13
(*>*)