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

> يكتب صفرا أو أكثر من القيم إلى Windows console الحالية عبر stdout بدون تغيير console text attribute. يتم تحويل القيم باستخدام 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>
