> ## 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

> 不更改 console text attribute，通过 stdout 向当前 Windows console 写入零个或多个值。值会使用 Lua string conversion 转换，并用 tab 字符分隔。该 function 不会添加 newline。如果不存在 console window，该调用会直接返回，不会转换或写入任何内容。

<div className="real-function-page">
  ```lua theme={null}
  rconsoleprint(...values?: ...any)
  ```

  ## 别名

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

  ## 参数

  <ParamField path={"...values"} type={"...any"}>
    可选值。如果存在 console，每个 value 会用 Lua string conversion 转换，并在写入前用 tab 字符连接。
  </ParamField>

  ## 示例

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

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