doc-src/Tutorial/Misc/Itrev.thy
author paulson
Mon, 04 Sep 2000 10:24:55 +0200
changeset 9824 c6eee0626d28
parent 5377 efb799c5ed3c
permissions -rw-r--r--
Converting HOL/ex/Primes.thy to new style, removing Primes.ML

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