Macro Command Reference
loop <RANGE>
Starts a loop for the given range. The running variable for the loop command is
l
. It is not possible to nest loops.
RANGE
A list of numbers (e.g. used for the loop
command):
n | defines a range from 0 to n |
from;to;step | defines a range where the arguments may be math expressions. |
b1,b2,b3,...,bn | a list of numbers where the arguments may be math expressions. |
bs..be | numbers from bs to be |