> ## 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에 0개 이상의 값을 씁니다. 값은 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>
