Conditional statement

If the condition is met, the statements of the IF part will be executed. If the condition is not met, the statements of the ELSE part will be executed. The nesting depth of conditional statements (IF construct within another IF construct) is not limited.

IF

Condition

 

Statements of the IF part

ELSE

 

Statements of the ELSE part

END_IF