Skip to content

Version()

You're viewing grandMA3 2.3 docs. Switch to the latest (2.4).

The Version Lua function returns the software version.

This function does not accept any arguments.

  • String:
    The returned string is the version of the grandMA3 software.

This example prints the software version in the Command Line History:

Copy CodeLua
```
return function()
Printf("Software version: %s", Version())

end