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

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

## Syntax

```lua theme={null}
identifyexecutor(): string | string
```

## Returns

| Name              | Type     | Description              |
| ----------------- | -------- | ------------------------ |
| `executorName`    | `string` | Executor name string.    |
| `executorVersion` | `string` | Executor version string. |

## Example

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

```lua theme={null}
local name, version = identifyexecutor()
print(name, version)
```
