Method

# Print

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

## Description

Used to <span class="title-ref">Print</span> to the terminal in `ConsoleApplications</api/console/consoleapplication>`.

## Usage

``` xojo
Print(data)
```

| Part | Type                             | Description             |
|------|----------------------------------|-------------------------|
| data | `String</api/data_types/string>` | The text to be printed. |

## Notes

The <span class="title-ref">Print</span> method performs the same operation as a call to the WriteLine method of the `StandardOutputStream</api/console/standardoutputstream>` class.

## Sample code

``` xojo
Print("App started.")
```

## Compatibility

|                       |              |
|-----------------------|--------------|
| **Project Types**     | Console, Web |
| **Operating Systems** | All          |

<div class="seealso">

`ConsoleApplication</api/console/consoleapplication>`, `StandardInputStream</api/console/standardinputstream>`, `StandardOutputStream</api/console/standardoutputstream>` classes; `TargetConsole</api/compiler_directives/targetconsole>` constant.

</div>
