STEP
 
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

FOR I=10 TO 1 STEP -1

See also