[prev] [index] [next]

Control Structures

Selection is handled by   if ... elsif ... else

if ( boolExpr1 ) { statements1 }
elsif ( boolExpr2 ) { statements2 }
...
else { statementsn }

statement if ( expression );