> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# rconsoleprint

> Writes zero or more values to the current Windows console with stdout without changing the console text attribute. Values are converted to strings and separated with tabs. The function does not add a newline. If no console window exists, the call returns without converting or writing anything.

Writes zero or more values to the current Windows console with stdout without changing the console text attribute. Values are converted to strings and separated with tabs. The function does not add a newline. If no console window exists, the call returns without converting or writing anything.

## Syntax

```lua theme={null}
rconsoleprint(...values?: ...any)
```

## Aliases

* `consoleprint`
* `rconsolewrite`
* `consolewrite`

## Arguments

| Name        | Type     | Required | Description                                                                                                             |
| ----------- | -------- | -------- | ----------------------------------------------------------------------------------------------------------------------- |
| `...values` | `...any` | No       | Optional values. If a console exists, each value is converted to strings and joined with tab characters before writing. |

## Example

Write values to the current Windows console without adding a newline.

```lua theme={null}
rconsolecreate()
rconsoleprint("Loading", "
")
rconsoleprint("User", "	", 42, "
")
```
