Null command

The Null command is a semicolon written where a command is expected. It is used for such things as an IF command with no action in its THEN clause.

Read syntax diagramSkip visual syntax diagram;

Example

Do nothing if array[x] > 0; otherwise, set a to 1. The current programming language setting is C.
if (array[x] > 0); else a = 1;