doc-src/TutorialI/Datatype/unfoldnested.thy
author haftmann
Sat, 06 Sep 2008 14:02:36 +0200
changeset 28145 af3923ed4786
parent 16417 9bc16273c2d4
permissions -rw-r--r--
dropped "run" marker in monad syntax

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