doc-src/TutorialI/Datatype/unfoldnested.thy
author wenzelm
Tue, 14 Nov 2006 00:15:37 +0100
changeset 21349 09c3af731e27
parent 16417 9bc16273c2d4
permissions -rw-r--r--
removed theorem(_i); incorporated into IsarCmd;

(*<*)
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
(*>*)