Code archives/Miscellaneous/Variable Step For..Next loop

This code has been declared by its author to be Public Domain code.

Download source code

Variable Step For..Next loop by *2002
This demonstrates Blitz's ability to adjust the For..Next variable to allow the variable step value.
;Variable Step value example
;a step value of 5

For var = 0 To 100
	Print var
	var = var + 4
Next

Comments

None.

Code Archives Forum