The keywords: IF ,THEN, ELSE
(if needed), ENDIF identify the structure.
ENDIF
statement(s)
ELSE
statement(s)
ENDIF
statement(s)
ELSE
IF condition THEN
statement(s)
ELSE
statement(s)
ENDIF
ENDIF
________________________________________________________________
CASE structure
The keywords: CASE OF , ENDCASE identify
the structure.
Sample Format:
CASE OF single variable
value_1: statement
block_1
value_2: statement
block_2
.
.
.
value_n: statement
block_3
value_other: statement
block_other
ENDCASE
________________________________________________________________