Skip to content
Brain edited this page May 7, 2023 · 6 revisions

IF

IF expression THEN statement ELSE statement

IF expression THEN
    statements
ENDIF

IF expression THEN
    statements
ELSE
    statements
ENDIF

Executes statements if an expression evaluates to true. You can use any of the following comparison operators to evaluate an expression to a truthy or falsy value:

Operator Meaning
> Greater Than
< Less Than
>= Greater than or Equal to
<= Less than or Equal to
= Equal to
<> Not equal to
Clone this wiki locally