Usage

edit

write ( [ LIST ] )

edit

The 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

edit
print ("Hello")

The write command does not automatically output a newline character

edit

In lua, the write function does not automatically outputs a newline character.

Outputting a newline character

edit

The print function automatically outputs a newline character. Alternatively it is possible to output a newline character by using an escape sequence.