Syntax
FOR iterator = initial_value TO end_value STEP increment
Description
In a
FOR statement, STEP specifies the increment of the loop iterator with each loop.
If no STEP
value is specified in the FOR loop the default of + 1 is used.
Example
See also