src/HOL/IMP/Com.thy
author kleing
Thu, 03 Nov 2011 15:54:19 +1100
changeset 45321 b227989b6ee6
parent 45212 e87feee00a4c
child 45415 bf39b07a7a8e
permissions -rw-r--r--
more IMP text fragments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43141
11fce8564415 Replacing old IMP with new Semantics material
nipkow
parents: 42174
diff changeset
     1
header "IMP --- A Simple Imperative Language"
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     2
43141
11fce8564415 Replacing old IMP with new Semantics material
nipkow
parents: 42174
diff changeset
     3
theory Com imports BExp begin
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     4
45321
b227989b6ee6 more IMP text fragments
kleing
parents: 45212
diff changeset
     5
text_raw{*\begin{isaverbatimwrite}\newcommand{\Comdef}{% *}
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     6
datatype
43141
11fce8564415 Replacing old IMP with new Semantics material
nipkow
parents: 42174
diff changeset
     7
  com = SKIP 
45321
b227989b6ee6 more IMP text fragments
kleing
parents: 45212
diff changeset
     8
      | Assign vname aexp       ("_ ::= _" [1000, 61] 61)
b227989b6ee6 more IMP text fragments
kleing
parents: 45212
diff changeset
     9
      | Semi   com  com         ("_;/ _"  [60, 61] 60)
43141
11fce8564415 Replacing old IMP with new Semantics material
nipkow
parents: 42174
diff changeset
    10
      | If     bexp com com     ("(IF _/ THEN _/ ELSE _)"  [0, 0, 61] 61)
11fce8564415 Replacing old IMP with new Semantics material
nipkow
parents: 42174
diff changeset
    11
      | While  bexp com         ("(WHILE _/ DO _)"  [0, 61] 61)
45321
b227989b6ee6 more IMP text fragments
kleing
parents: 45212
diff changeset
    12
text_raw{*}\end{isaverbatimwrite}*}
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    13
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    14
end