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

# identifyexecutor

> Returns two strings: the executor name followed by the executor version.

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

  ## Giá trị trả về

  <ResponseField name={"executorName"} type={"string"}>
    Executor name string.
  </ResponseField>

  <ResponseField name={"executorVersion"} type={"string"}>
    Executor version string.
  </ResponseField>

  ## Ví dụ

  Read Real's executor name and version as two return values.

  ```lua theme={null}
  local name, version = identifyexecutor()
  print(name, version)
  ```
</div>
