> ## 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 değerini değiştirmeden stdout üzerinden geçerli Windows console içine sifir veya daha fazla deger yazar. Değerler Lua string conversion ile dönüştürülür ve tab karakterleriyle ayrılır. function newline eklemez. console window yoksa çağrı herhangi bir seyi donusturmeden veya yazmadan doner.

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

  ## Aliaslar

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

  ## Argümanlar

  <ParamField path={"...values"} type={"...any"}>
    Istege bagli degerler. console varsa her value Lua string conversion ile donusturulur ve yazmadan once tab karakterleriyle birlestirilir.
  </ParamField>

  ## Örnek

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

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