ENDIF | END IF
 
Syntax

if [statement] then
[action]
ENDIF

Description


ENDIF is used to denote the end of a block IF statement.

Version 7.00 allows ENDIF or END IF syntax

Example

IF a = 1 THEN
 PRINT "A is equal to one!"
ENDIF

See also