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

> Ghi khong hoac nhieu gia tri vào Windows console hiện tại qua stdout mà không thay đổi console text attribute. Giá trị được chuyển đổi bằng Lua string conversion và phân tách bằng ký tự tab. function không thêm newline. Nếu không có console window, lời gọi sẽ trả về ma khong chuyen doi hoac ghi gi.

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

  ## Alias

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

  ## Đối số

  <ParamField path={"...values"} type={"...any"}>
    Cac gia tri tuy chon. Neu co console, moi value duoc chuyen doi bang Lua string conversion va noi bang ky tu tab truoc khi ghi.
  </ParamField>

  ## Ví dụ

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

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