Code: Select all
;---- actual pure version - this works ----
FOR i = 0 TO 1024
your code...
NEXT
;---- add this feature / dont work in actual version ----
FOR i = 0 TO 1.5 STEP 0.1 ; just as example...
your code...
NEXT
Code: Select all
;---- actual pure version - this works ----
FOR i = 0 TO 1024
your code...
NEXT
;---- add this feature / dont work in actual version ----
FOR i = 0 TO 1.5 STEP 0.1 ; just as example...
your code...
NEXT