This code works.
This code works.
This code does not.
Why? I think this is a bug.
;Text example ; enable graphics mode Graphics 800,600,16 ; wait for ESC key before ending While Not KeyHit(1) ;print the text, centered horizontally at x=400, y=0 Text 400,0,"Hello World!",True,False Flip Wend
This code works.
While Not KeyHit(1) Print Chr$(1) Wend
This code does not.
;Text example ; enable graphics mode Graphics 800,600,16 ; wait for ESC key before ending While Not KeyHit(1) ;print the text, centered horizontally at x=400, y=0 Text 400,0,Chr$(1),True,False Flip Wend
Why? I think this is a bug.