step

For ... next variable increment/decrement value.

Syntax:
step value
value can be a number either positive, negative, integer or floating.

Example:
for i=0 to 10 step 2
    prints(i)
next

Example:
for i=10 to 0 step  -1
    prints(i)
next

See also for - next command for further informations.