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

# rconsoleinput

> console input state temizlendikten ve sonraki newline noktasına kadar input yok sayıldıktan sonra console input ile stdin üzerinden bir line okurken yield eder. Dönen string string return ile push edilir ve sondaki newline değerini içermez. console window yoksa çağrı values olmadan döner.

<div className="real-function-page">
  ```lua theme={null}
  rconsoleinput(): string
  ```

  ## Aliaslar

  * `consoleinput`

  ## Dönüşler

  <ResponseField name={"input"} type={"string"}>
    Konsoldan okunan metin satırı.
  </ResponseField>

  ## Örnek

  Read one submitted line from the current Windows console.

  ```lua theme={null}
  rconsolecreate()
  rconsoleprint("Name: ")
  local name = rconsoleinput()
  rconsoleprint("Hello, ", name, "
  ")
  ```
</div>
