Skip to content
Brain edited this page Apr 30, 2023 · 2 revisions

ENDIF

IF expression THEN
    statements
ENDIF

IF expression THEN
    statements
ELSE
    statements
ENDIF

Indicates the end of a multi-line block IF statement. Can occur after a THEN part or an ELSE part. Note that END IF with spacing is also accepted as well as ENDIF.

Clone this wiki locally