grandMA3 User Manual Publication
Echo(string)

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

Description

The Echo Lua function prints a string in the System Monitor.

Argument

  • String:
    The string text to be printed to the System Monitor.

Return

This function does not return anything.

Example

This example prints "Hello World!" on the System Monitor:

Lua
return function()
-- Prints 'Hellow World!' in the system monitor in yellow text.
Echo("Hello World!")
end