3.4.4. if-elseif-else-endif
Description
Syntax
if <bool expression>
<statement A>
…
elseif <bool expression>
<statement B>
…
elseif <bool expression>
<statement C>
…
else
<statement N>
…
endifExample
Last updated
Was this helpful?