Print

Last Modified: 1/15/2021

Displays characters on the screen.

Arguments

NameTypeRequiredDescription
Expression Any No The information you want to display on the screen.

Example

Syntax: Print <Expression> [, <Expression>;<Expression>...n]
    Print
    Print "Hello"
    Locate 4,10
    Print "W","orl";"d"

Remarks

You can use a comma to separate output by a tab, and a semi-colon will place the following output immediately after. These are optional expressions. Omitting an expression will output a carriage return. You can use Locate to set the text cursor.

By default, characters will be drawn to plane a. Use the SetTextPlane command to change planes. You can also use the Option command to change the text priority.

See Also

Locate, Option, SetTextPlane