src/Pure/Thy/thy_header.scala
author bulwahn
Sat, 24 Oct 2009 16:55:43 +0200
changeset 33145 1a22f7ca1dfc
parent 32466 a393b7e2a2f8
child 34169 7501b2910900
permissions -rw-r--r--
removed dead code; added examples

/*  Title:      Pure/Thy/thy_header.scala
    Author:     Makarius

Theory header keywords.
*/

package isabelle


object Thy_Header
{
  val HEADER = "header"
  val THEORY = "theory"
  val IMPORTS = "imports"
  val USES = "uses"
  val BEGIN = "begin"

  val keywords = List("%", "(", ")", ";", BEGIN, HEADER, IMPORTS, THEORY, USES)
}