Echo(string)
Description
Section titled âDescriptionâThe Echo Lua function prints a string in the System Monitor.
Argument
Section titled âArgumentâ- String:
The string text to be printed to the System Monitor.
This function does not return anything.
Example
Section titled âExampleâ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