For statement
New in 2021!   Eonza automation software - free, open source cross-platform automation software for easy creation and management of scripts.

For statement

For statement. You can use this command to define an enumerate loop from one value to another value. This command can contain other commands that will be executed on the each step.

Description
Optionally, you may add comments here describing the purpose of this element.
Variable name
The name of the variable whose value will be equal the current value.
val1 
First
The first initial value of the loop.
Last
The last value of the loop.
You can use the Source code command with Gentee programming language code for more complex for statement.
uint my
fornum my = 20 + defmacro.getint("myval"), 34
{
   $body$
}