IF/THEN/ELSE
TheIF/THEN/ELSE
construct is used for conditional execution of DGL statements. The statements following theTHEN
(and before anyELSE
) are executed ifboolean
evaluates toTRUE
. If it evaluates toFALSE
, the statements followingELSE
are executed, when present.
●
●
●