do
| Stack | Position | Description |
|---|---|---|
| Stack(In) | top | - |
| Stack(Out) | top | - |
do starts a statement sequence, which is supposed to be executed cyclic; the cycle ends with while or loop. A cycle can be left with while or break. A new iteration cycle begins with the statement continue. It jumps to the start of the statement sequence.
Information: Cycles can have a nesting depth up to 128. Cycles are only allowed within the definition of new statements!