Files
wow-weakauras/FreshShit/RaiderlosSA/scratch.lua
2024-08-24 22:43:07 +02:00

10 lines
233 B
Lua

local function varargToString(...)
local output = {}
for i = 1, select("#", ...) do
table.insert(output, tostring(select(i, ...)))
end
print(table.concat(output, ", "))
end
test("Hello", "world", "again", 2323, true)