src/Doc/Tutorial/Datatype/unfoldnested.thy
author nipkow
Thu, 03 Jul 2025 13:53:14 +0200
changeset 82802 547335b41005
parent 58860 fee7cfa69c50
permissions -rw-r--r--
removed duplicate lemma; added the notion of the kernel of a function

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