Модуль:TableOfChemicals: различия между версиями

Материал из МК14 | Space Station 14 Wiki
Нет описания правки
Нет описания правки
Строка 1: Строка 1:
return { test = function()
return { test = function()
local ok, result = pcall(function()
local ok, result = pcall(function()
local s = mw.site; if s and s.stats then return tostring(s.stats) else return "no stats" end
local r = {}; for k,v in pairs(_G) do if type(v) == "table" then local count = 0; for _ in pairs(v) do count = count+1 end; r[#r+1] = k .. "(table," .. count .. ")" elseif type(v) == "function" then r[#r+1] = k .. "(func)" end end; return table.concat(r, ",")
end)
end)
if ok then return tostring(result) else return 'ERR: ' .. tostring(result) end
if ok then return tostring(result) else return 'ERR: ' .. tostring(result) end
end, }
end, }

Версия от 23:54, 21 июня 2026

Для документации этого модуля может быть создана страница Модуль:TableOfChemicals/doc

return { test = function()
local ok, result = pcall(function()
local r = {}; for k,v in pairs(_G) do if type(v) == "table" then local count = 0; for _ in pairs(v) do count = count+1 end; r[#r+1] = k .. "(table," .. count .. ")" elseif type(v) == "function" then r[#r+1] = k .. "(func)" end end; return table.concat(r, ",")
end)
if ok then return tostring(result) else return 'ERR: ' .. tostring(result) end
end, }