Нет описания правки Метка: ручная отмена |
Нет описания правки |
||
| Строка 1: | Строка 1: | ||
return function() return ' | return { test = function() | ||
local ok, result = pcall(function() | |||
local count = 0; for i,v in ipairs(package.searchers) do count = count + 1 end; return tostring(count) | |||
end) | |||
if ok then return tostring(result) else return 'ERR: ' .. tostring(result) end | |||
end, } | |||
Версия от 12:21, 22 июня 2026
Для документации этого модуля может быть создана страница Модуль:TableOfChemicals/doc
return { test = function()
local ok, result = pcall(function()
local count = 0; for i,v in ipairs(package.searchers) do count = count + 1 end; return tostring(count)
end)
if ok then return tostring(result) else return 'ERR: ' .. tostring(result) end
end, }