grandMA3 User Manual Publication

Version()

grandMA3 User Manual » Plugins » Lua Functions - Object-Free API » Version()
Version 2.1

Description

The Version Lua function returns the software version.

Arguments

This function does not accept any arguments.

Return

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

Example

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

Lua
return function()
Printf("Software version: %s", Version())
end