Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

This is an old revision of the document!


PRINT

Syntax:

print <any expression or string> [, <any exrpession or string>, ...]

The PRINT command prints strings or numbers (values of any expression) on the screen using the KERNAL CHAROUT routine. Any number of arguments are accepted. The arguments must be separated with a comma (,). A RETURN character ($0D) will be printed after the last printed value.

Examples:

print "hello world"
print "the value of myvar is ", myvar, " and that of anothervar is ", anothervar
print "let's print the value of an expression: ", (486 + y) * 3

ASCII strings will be converted to PETSCII in compile-time.