5 lines
568 B
Lua
5 lines
568 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
||
|
||
---@param ... list
|
||
---Outputs a list of values (in the main chat window by default). The default print handler prints all values passed to it, separated by spaces, to the default chat frame. Values are passed through tostring(), so only number and string values are output in a literal form: tables, functions and userdata are output as a memory address preceded by their type. This behavior can be customized by using setprinthandler() to designate an alternate function for output.
|
||
function print(...) end |