| 15 | A compound statement is an ordered list of statements. |
| 16 | The simplest statement is the expression. |
| 17 | Some statements can only be performed from within a FSM. |
| 18 | |
| 19 | {{{ |
| 20 | statementClause := |
| 21 | ( expression // x := 23 |
| 22 | | ifStatementClause // IF boolExpression compoundStatement [ "ELSE" compoundStatement } |
| 23 | | forStatementClause // EACH ident IN |
| 24 | | switchStatementClause |
| 25 | | subscribeStatementClause |
| 26 | | sendStatementClause |
| 27 | | returnStatementClause |
| 28 | | transitionStatementClause |
| 29 | | |
| 30 | ) ; |
| 31 | }}} |