doc-src/TutorialI/Datatype/unfoldnested.thy
author haftmann
Sun, 05 Dec 2010 08:34:02 +0100
changeset 40963 08939f7b6262
parent 16417 9bc16273c2d4
permissions -rw-r--r--
merged

(*<*)
theory unfoldnested imports Main begin;
(*>*)
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
(*>*)