doc-src/Tutorial/Misc/Itrev.thy
author paulson
Wed, 19 Jul 2000 12:33:36 +0200
changeset 9392 c8e6529cc082
parent 5377 efb799c5ed3c
permissions -rw-r--r--
changed / to // for quotienting

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