print ,"This should be tabbed over once."
print ,
sleep 100
print "And so should this." 'but it isn't.
print ,
sleep 100
print "This one too." 'and it is
print ,
print ,
sleep 100
print "This should be tabbed over twice."
print ,
sleep 100
print ,"And so should this."
sleep 100
print ,
sleep 100
print "I tabbed over once but I slept before and after the tab."
sleep
The second line of text should be tabbed over once, but isn't. I can't seem to reproduce it after the first time in the code. Issuing a Sleep at the start of the program does not correct the bug.
Compiler: FreeBASIC-1.10.0-winlibs-gcc-9.3.0
OS: Windows 11 22H2 Build 22621.1702
No problem for me with Windows 10 (GAS or GCC 32/64-bit or GAS64).
(Windows 10 22H2 - 19045.2846)
Last edit: fxm (freebasic.net) 2023-05-21
No issues here on win 7 and win 10.
What happens on win 11 when all
sleep 100statements are removed?