Files
wow_Meta/api/print.lua
2025-05-04 14:35:26 +02:00

6 lines
568 B
Lua
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---@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