src/Doc/Tutorial/Datatype/unfoldnested.thy
author wenzelm
Sat, 01 Nov 2014 14:20:38 +0100
changeset 58860 fee7cfa69c50
parent 48985 5386df44a037
permissions -rw-r--r--
eliminated spurious semicolons;

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