Print

From Xojo Documentation

You are currently browsing the old Xojo documentation site. It will go offline as of October 2, 2023. Please visit the new Xojo documentation site! - you will be redirected shortly...
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.