doc-src/TutorialI/Trie/Option2.thy
author wenzelm
Thu, 27 Jul 2000 18:27:25 +0200
changeset 9456 880794f48ce6
parent 8771 026f37a86ea7
permissions -rw-r--r--
added theory While;

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

datatype 'a option = None | Some 'a;
(*<*)
end
(*>*)