PRINT

Core command PRNT

Print text

Arguments

<text> text to print, if empty prints a blank line

Examples

PRINT Hello World;

Notes

Prints text to the console: PRINT <text> (or PRNT).

With no argument, prints a blank line. Unquoted text is split on spaces and rejoined with ", " - so PRINT Hello World; prints Hello, World, not Hello World. To print multi-word text verbatim, quote it: PRINT "Hello World";.

Last modified in release 5.0.7.