Print

From Xojo Documentation

Method

Used to print to the terminal in ConsoleApplications.

Syntax

Print (data)

Part Type Description
data String The text to be printed.

Print appends the Newline character to the end of data.

Notes

The Print method performs the same operation as a call to the WriteLine method of the StandardOutputStream class.

Example

Print("App started.")

See Also

ConsoleApplication, StandardInputStream, StandardOutputStream classes; TargetDesktop constant.