doc-src/TutorialI/Datatype/unfoldnested.thy
author nipkow
Wed, 24 Jan 2001 12:29:10 +0100
changeset 10971 6852682eaf16
parent 8751 9ed0548177fb
child 16417 9bc16273c2d4
permissions -rw-r--r--
*** empty log message ***

(*<*)
theory unfoldnested = Main:;
(*>*)
datatype ('v,'f)"term" = Var 'v | App 'f "('v,'f)term_list"
and ('v,'f)term_list = Nil | Cons "('v,'f)term" "('v,'f)term_list"
(*<*)
end
(*>*)