doc-src/Tutorial/Recdef/Sep2.thy
author oheimb
Fri, 28 Jan 2000 11:22:02 +0100
changeset 8148 5ef0b624aadb
parent 6100 40d66bc3e83f
permissions -rw-r--r--
beautified spacing for binders with symbols syntax, analogous to HOL.thy

Sep2 = Main +
consts sep :: 'a list => 'a => 'a list
recdef sep "measure length"
  "sep (x#y#zs) = (%a. x # a # sep zs a)"
  "sep xs       = (%a. xs)"
end