Page 1 of 1

VOTE --- FOR/NEXT values should support floats too..

Posted: Tue Mar 22, 2005 6:08 pm
by Ralf
Maybe just another interesting vote and discussion...!? However i dont want flood this forum with polls ;)

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