flow
flow control
DESCRIPTION
A statement_block is either a statement or
{ statement; statement; ... }
Conditionals
if (condition) statement_block
if (condition) statement_block else statement_block
Loops
while (condition) statement_block
for (start; condition; increment) statement_block
Branching within loop statement_blocks:
continue
break
To jump back to the command level (usually on errors):
exit
