Next: 6 Implementation
Up: CLANGER : an interpreted
Previous: 4 Function Definition
As well as function and method invocation, CLANGER provides the
usual rich set of control flow structures:
- while loops
- for loops
- if statements
- case statements
- exceptions with raise, try, catch, catchall and
finally.
A block is delimited by curly brackets (``{'' and ``}'') and
can be used in place of a statement.
T. Roscoe