| author | haftmann |
| Wed, 06 May 2009 16:01:06 +0200 | |
| changeset 31048 | ac146fc38b51 |
| parent 29140 | e7ac5bb20aed |
| child 32450 | 375db037f4d2 |
| permissions | -rw-r--r-- |
/* Title: Pure/Thy/thy_header.scala Author: Makarius Theory header keywords. */ package isabelle object ThyHeader { val HEADER = "header" val THEORY = "theory" val IMPORTS = "imports" val USES = "uses" val BEGIN = "begin" val keywords = List("%", "(", ")", ";", BEGIN, HEADER, IMPORTS, THEORY, USES) }