doc-src/Tutorial/Misc/Itrev.thy
author webertj
Fri, 12 Mar 2004 10:47:59 +0100
changeset 14465 8cc21ed7ef41
parent 5377 efb799c5ed3c
permissions -rw-r--r--
\<dots> replaced by ...

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