print()
Purpose
Print text to the screen
Description
Prints text to the screen at the current cursor position and text size and in the current ink colour
Syntax
print( values )
Arguments
values A comma separated list of values to print.
Example
hideKeyboard()
ink( red )
textSize( 50 )
message = "Hello World"
cursor( ( tWidth() - len( message ) ) / 2, tHeight() / 2 )
print( message )
update()
sleep( 3 )
Associated Commands
cursor(), drawText(), ink(), len(), printAt(), stringHash(), textSize(), tHeight(), tWidth()