doc-src/Tutorial/Misc/Itrev.thy
author wenzelm
Thu, 19 Aug 1999 16:33:53 +0200
changeset 7289 3b1b301467cd
parent 5377 efb799c5ed3c
permissions -rw-r--r--
disabled print_mode (tmp);

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