Code: Select all
nStep = 2
for x = 0 to 10 Step nStep
would be usefull

KarLKoX wrote:Code: Select all
nStep = 2 for x = 0 to 10 Step nStep
would be usefull(or it is a bug ?)
Needs to be a numberic constant or just a number.KarLKoX wrote:Code: Select all
nStep = 2 for x = 0 to 10 Step nStep
would be usefull(or it is a bug ?)
Code: Select all
#nStep = 2
For x = 0 To 10 Step #nStep
Debug x
Next x