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.
Return
Section titled “Return”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