NIL Command
NIL — Do nothing.
Introduction
The NIL command is processed as a logic
command, but does not do anything at run-time. It can be used in combination of
conditionally executed logic blocks. If there is a condition, that needs
no logic block, this command can be used.
Example
. . .
. . .
IF L-Counter < 10 THEN
NIL
ELSE
CALL OrderProceed L-OrderNumber
ENDIF
. . .
. . .