Until

Loops
Aptilis 1

Until

Until is used to finish a repeat loop.
You have to put an expression, ie. some Aptilis code after 'until'.
If this expression, once calculated is not 0, then the loop ends and the lines after 'until' will be run.

Example:
until i = 4

See repeat for more details and some examples.