| Posted: 10:04am 07 May 2026 |
Copy link to clipboard |
 Print this post |
|
OPTION EXPLICIT OPTION DEFAULT NONE Option Tracecache on 128 dim x as float dim i as integer x=1000000 timer = 0 do x=x/1.0001 i=i+1 loop while x>1
print timer
In my case, this is 10ms faster than:
OPTION EXPLICIT OPTION DEFAULT NONE Option Tracecache on 128 dim x as float dim i as integer x=1000000 timer = 0 do x=x/1.0001 inc i loop while x>1
print timer |