doc-src/Tutorial/Misc/Tree.thy
author paulson
Mon, 23 Oct 2000 16:24:52 +0200
changeset 10294 2ec9c808a8a7
parent 5377 efb799c5ed3c
permissions -rw-r--r--
the Sets chapter and theories
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5377
efb799c5ed3c *** empty log message ***
nipkow
parents:
diff changeset
     1
Tree = Main +
efb799c5ed3c *** empty log message ***
nipkow
parents:
diff changeset
     2
datatype 'a tree = Tip | Node ('a tree) 'a ('a tree)
efb799c5ed3c *** empty log message ***
nipkow
parents:
diff changeset
     3
end