Skip to content

Echo(string)

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

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

This function does not return anything.

This example prints “Hello World!” on the System Monitor:

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

end