Loops
[FOR]
Execute a loop for a specific number of executions. You can use the placeholder %i% to get the current run number.
Example:
[ROF]
(ROF is FOR in reverse) Marks the end of a loop, everything behind the ROF does not belong to the loop
Example:
[WHILE]
The loop is executed as long as the condition is met (you can use %i% placeholder)
Example:
[ELIHW]
(ELIHW is WHILE in reverse) Marks the end of the WHILE loop
Example:
[BREAK]
Breaks an active loop
Example:
Last updated