Function:
Loop construct for repetitive operations.
Syntax:
For <variable> = <start value> to <end value> … Next <variable>
Example:
Let iLower = 1
Let iHigher = 10
Let iTotal = 0
For i = %%iLower%% to %%iHigher%%
Let iTotal = %%iTotal%% + %%i%%
Message "I = %%i%%"
Next i