Nog een paar:
Comments may be inserted between any two symbols in a program. They are arbitrary character sequences opened by the bracket (* and closed by *). Comments may be nested. They do not affect the meaning of a program.
Every identifier occurring in a program must be introduced by a declaration, unless it is a predeclared identifier.
No identifier may denote more than one object within a given scope (i.e. no identifier may be declared twice in a block).
Case labels are constants, and no value must occur more than once. If the value of the expression does not occur as a label of any case, the statement sequence following the symbol ELSE is selected, if there is one, otherwise the program is aborted.
De compatibiliteitsregels zijn ook uitvoeringsbesluiten (zie slide 144

)!
Nog andere: de manier waarop lussen werken (WHILE = stopt als voorwaarde vals is, REPEAT stopt als voorwaarde waar is ...); kortsluitingsevaluatie bij logische uitdrukkigen ...
Eigenlijk is bijna alles dat in die Report staat een uitvoeringsbesluit (behalve de EBNF zelf)

.