Next: Using inevitable and optional, Previous: on, Up: Declarative Statements [Contents][Index]
guardguard ::= "[" bool-expression "]" statement
For example:
[idle] on hello: idle = false;
[!idle]
{
on hello: idle = true;
on inevitable: {world; idle = true;}
}