10 lines
233 B
Lua
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)
|