identifyexecutor Synchronous
getexecutorname
Get the running Kawaii build name and version together. Include both in a bug report so someone reading the log knows which runtime produced it.
Luau
identifyexecutor() -> (name: string, version: string)Parameters
This function takes no arguments.
Returns
(name: string, version: string)Two strings: executor name, then version.
Usage notes
The version is a reported build value, so read it at runtime instead of hard-coding a release number.
Example
Luau
local name, version = identifyexecutor()
print(string.format("Running %s %s", name, version))