Skip to main content

Print to buffer (print)

Declaration

print([ arg1, arg2, ... ])

Parameters

  • arg1, arg2, ...
    Any type, optional, variadic. Converted to text and appended to the print buffer, separated by "\t".

Notes

print is Lua's built-in printing function. In XXTouch it prints to an internal buffer.

Example

print("hello world")