FOR(<#var>,<start>,<end>)

Category
Control Flow
Added in
v0.9

Begins a for loop using the specified <#var> as a loop counter. Needs to be closed with NEXT.

The loop can be exited early by using BREAK.

Alternative syntax:

FOR(<#var> = <start> to <end>)
FOR(<#var> = <start> to <end> step <step>)

Actions

Changelog