Lua Programming/print
Usage
editprint ( [ LIST ] )
editThe print function is variadic and is used to produce simple standardized output. A comma separated list of items for output is provided in the argument list.
Examples
editprint ("Hello")
The newline is automatic
editIn lua, the print function automatically outputs a newline, so there is no need to embed a newlineescape sequence into the output string.
Supression of the automatic newline
editThe write command provides the same functionality as the print function, but does not automatically output the newline character.