Lua Programming/write
Usage
editwrite ( [ LIST ] )
editThe write 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 write command does not automatically output a newline character
editIn lua, the write function does not automatically outputs a newline character.
Outputting a newline character
editThe print function automatically outputs a newline character. Alternatively it is possible to output a newline character by using an escape sequence.