If the value of the
<Boolean expression>
in
an
IF
statement is true and a program line follows
the keyword
THEN
, this program line is executed.
If the value of the Boolean expression is false and a program line
follows the keyword
ELSE
, this program line is
executed. If
ELSE
is not present, then execution
continues in sequence, with the line following the
END
IF
statement.