fPrintS()

Like printS(), it prints monospace text on screen but without the carriage return at the end of text line.

Syntax:
fPrintS( expression )

Example:
' let's compare printS with fPrintS
for n = 1 to 20
    printS( "line " & n )
next
for n = 1 to 20
    fPrintS( "line " & n )
next
waitKey