doc-src/Tutorial/Misc/Itrev.thy
author webertj
Wed, 10 Mar 2004 20:36:11 +0100
changeset 14455 5c4a1e96efd6
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Updated examples

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