For - Next

Flow control commands are used to execute some parts of code depending of a condition, or iterate a part of the code if a condition isnt true, this is a critical part of programs without these functions are impossible to make a program.

Repeat a piece of code with a variable increment/decrement from initial value to final value, with a optional step value for every iteration, accept integer and float values.

Syntax:
For Variable=InitialValue To FinalValue [Step StepValue]
[Instructions block]
Next