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

Everything else that doesn't fall into one of the other PB categories.

Wishlist: Should FOR/NEXT support float values!?

Yes, i agree! I'd like to have float support here...
9
64%
No, i dont need this feature...
4
29%
Floats, what the hell are floats? :-)
1
7%
 
Total votes: 14

Ralf
Enthusiast
Enthusiast
Posts: 203
Joined: Fri May 30, 2003 1:29 pm
Location: Germany

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

Post 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