identifyexecutor
Returns the name and version of the currently running executor.
function identifyexecutor(): (string, string)stringThe identifier name of the executor (for example, "Wave" or "Solara").stringThe specific version string of the software.Usage
Basic usage
local name, version = identifyexecutor()
print(name, version) -- Output: "Wave", "1.1.2"