NIL Command

NIL — Do nothing.

Synopsis

NIL

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.

Arguments

None.

Example

. . .
. . .
IF L-Counter < 10 THEN
    NIL
ELSE
    CALL OrderProceed L-OrderNumber
ENDIF
. . .
. . .

Related Commands

None.