Oh you guys and gals have been busy!
I was testing other Basics and learned LB could go to 4 million +
Well I doubled that in QB64pe v3.7 with same code tip: use a GoSub!
I was up past 8 million or was it 81 million? I stopped program to get my computer back to do more stuff.
Oh hey! Works way way way faster w/o delay (the key word = works)
Way past 200 million as I write this.
3 Billion+ whats to stop this? The _Integer64 Type I think.
Oh got over .5 Billion not 3 Billion, misread numbers:
I was testing other Basics and learned LB could go to 4 million +
Well I doubled that in QB64pe v3.7 with same code tip: use a GoSub!
Code: (Select All)
Dim i As _Integer64
i = 1
GoSub howRecursive
End
howRecursive:
If i < 0 Then Print "_Integer64 turned negative.": End
Print i
_Delay .000000000005
i = i + 1
GoSub howRecursive
Return
I was up past 8 million or was it 81 million? I stopped program to get my computer back to do more stuff.
Oh hey! Works way way way faster w/o delay (the key word = works)
Way past 200 million as I write this.
3 Billion+ whats to stop this? The _Integer64 Type I think.
Oh got over .5 Billion not 3 Billion, misread numbers:
b = b + ...