doc-src/Tutorial/Misc/Itrev.thy
author wenzelm
Wed, 03 Oct 2001 21:03:05 +0200
changeset 11659 a68f930bafb2
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Tools/induct_attrib.ML now part of Pure;

Itrev = Main +
consts itrev :: 'a list => 'a list => 'a list
primrec
"itrev []     ys = ys"
"itrev (x#xs) ys = itrev xs (x#ys)"
end