Contents | Index | < Browse | Browse >
NOP
usage: NOP
-does nothing (a NO-oPeration instruction)
-used to control the binding of ELSE clauses in
compound IF statements

EXAMPLE:

IF i = j THEN /* First or "outer" IF */
IF j = k then a = 0 /* Inner IF */
ELSE NOP /* "Binds" or controls the inner IF */
END /* Binds to outer IF */