printS()
Prints monospace text on screen.
Syntax:
printS( expression
)
expression
can be a string or a number.
Example:
printS(
1234
)
a = 5678
printS(
a
)
printS(
"this is a direct string"
)
a$ = "this is a variable string"
printS(
a$
)
waitKey