To define a dummy standalone routine with N local variables (unless it
already exists):
- Stub routine N;
\ No newline at end of file
+ Stub routine N;
+
+Flow control
+------------
+
+To execute statements if *expr* is true; optionally, to execute other
+statements if *expr* is false:
+
+ if (expr)
+ statement_block
+ if (expr)
+ statement_block
+ else
+ statement_block
+
+To execute statements depending on the value of *expr*:
+
+ switch (expr) {
+ value: statement; ... statement;
+ value: statement; ... statement;
+ ...
+ default: statement; ... statement;
+ }
+
+where each *value* can be given as:
+
+ constant
+ lo_constant to hi_constant
+ constant,constant, ... constant
\ No newline at end of file