DefType.w i NPrint "For loop from 5 to 0 with step -1" For i=5 To 0 Step -1 NPrint "Loop 1, counting: ",i Next NPrint "For loop from 0 to 10 with step 3" For i=0 To 10 Step 3 NPrint "Second loop, counting: ",i Next NPrint "For loop from 0 to 2*Pi with fractional step" For angle.q=0 To 2*Pi-0.1 Step 0.1 ; This could be used for e.g. processing a circle using radians instead of ; degrees. The -0.1 in the second expression is so we do not reach the value 2*Pi ; (which would be repeating 0 anyway). Oh, and Pi is a Blitz command which returns ; the mathematical value of Pi (3.141....) NPrint "Counting fractional values: ",i Next NPrint "A little something can count in any direction - change me and see :)" start.w = 0 end.w = 10 stepsize.w=1 If start > end Then stepsize=-1 For i=start To end Step stepsize NPrint "Final loop, counting: ",i Next MouseWait End