grandMA3 User Manual Publication
Printf(string)
grandMA3 User Manual » Plugins » Lua Functions - Object-Free API » Printf(string)
Version 2.0

Description

The Printf Lua function prints a string in the Command Line History and System Monitor.

Argument

  • String:
    The string text to be printed to the Command Line History.

Return

This function does not return anything.

Example

This example prints "Hello World!" in the Command Line History:

Lua
return function()
Printf("Hello World!")
end