(05-20-2024, 08:57 PM)grymmjack Wrote: @SMcNeill what does this do?It's an old means of doing what _UPrintString does for us nowadays. Since there's no $LET FALCON = TRUE defined, it just does a basic PRINT command for us, where you tell it to.
Code: (Select All)$If FALCON = TRUE Then
QPrint p$
$Else
Print p$
$End If
(IF you're curious about QPRINT, see here: https://qb64phoenix.com/forum/showthread.php?tid=2251 -- this allows us to have word wrap, proper font displays, and other such features with our ExtendedInput.)