Skip to main content

For

For / Next (Statement)

Format

for variable = start_expression to stop_expression [ step step_expression ]
(tab)statement(s)
next variable

Description

The FOR and NEXT commands are used in conjunction to execute a command or group of commands a specified number of times. When the FOR command is first encountered, the variable is set to start_expression.
After each NEXT command, variable is incremented by 1 (the default), or by step_expression if the optional STEP is used, until the variable is greater than stop_expression for positive step values, or less than stop_expression for negative step values.

Example

for i = 1 to 5
print i
next i

print "after the for " + i

for k = 5 to 1 step -1
? k
next

displays

1
2
3
4
5
after the for 6
5
4
3
2
1

See Also

Begin Case / Case / End Case, Call, Continue Do, Continue For, Continue While, Do / Until, End, Exit Do, Exit For, Exit While, For / Next, For Each / Next, Function, Global, Goto, Gosub, If Then, Pause, Ref, Rem, Return, Subroutine, While / End While

History

2.0.0.0Variable in Next statement is now optional