mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-07-04 08:30:24 +02:00
12 lines
170 B
Lua
12 lines
170 B
Lua
mem = (...) or {}
|
|
|
|
log = {}
|
|
|
|
function print(...)
|
|
local entry = {}
|
|
for i, v in ipairs({...}) do
|
|
entry[i] = dump(v)
|
|
end
|
|
log[#log + 1] = table.concat(entry, "\t")
|
|
end
|