04-14-2025, 01:00 PM
When I type this in
For i% = 1 To 5
Print i%
Next
Print i%
I get when I run it:
1
2
3
4
5
6
Seems like it should be 5 not 6.
Why is i% 6 after it comes out of the for/next loop?
I am running QB64e under fedora linux. Not sure how to find the version number, but the installation files all have 12/13/2024 as the date modified on them so it isn't an old version.
For i% = 1 To 5
Print i%
Next
Print i%
I get when I run it:
1
2
3
4
5
6
Seems like it should be 5 not 6.
Why is i% 6 after it comes out of the for/next loop?
I am running QB64e under fedora linux. Not sure how to find the version number, but the installation files all have 12/13/2024 as the date modified on them so it isn't an old version.