ENDIF

Top  Previous  Next

Syntax

ENDIF

Description

Ends an IF block.

Parameters

None

Return value

None

Remarks

Every IF block must be terminated with an associated ENDIF statement

See Also: IF

Example usage

IF a = 4
    b = b + 1
ELSE
    b = b - 1
ENDIF