company logo

IF block

An IF block defines a conditional process. When the condition returns true, the statement or block following the condition is executed. If not, the ELSE statement or block is executed, when being defined.

Definition: 

if_block := _if condition bstatement [ else_stmt ]