×
Menu
Index

PRINT, PRINTL Subroutines

 
Usage:
PRINT(s [, …])
PRINTL(s [, …])
 
Description:
Use these subroutines to print text to the screen. The difference between PRINT and PRINTL is that PRINTL prints a new line after all text (it moves the text cursor to the start of the next line).
 
Both subroutines take any number and type of arguments.
 
Example:
sub main()
   a = 5
   b = "Test"
   c = 52.9
   printl("a = ", a, ", b = ", b, ", c = ", c)
end sub