For Range
A generic counted loop. Iterates from start to end by step, exposing the named variable to all nested blocks. More flexible than For Z which is Z-specific.
Block
Interactive preview is available in the interactive reader.
Parameters
variable name- Name of the loop variable (e.g. "i", "angle", "temp").
start- Starting value.
end- Ending value.
step- Increment per iteration.
body- Statement slot for operations to repeat.
How it works
For Range iterates from start to end by step, exposing the named variable to all nested blocks. Use the Variable block to read the loop variable inside expressions.