Модуль:TableOfChemicals
Версия от 20:01, 23 апреля 2024; KrasnoshchekovPavel (обсуждение | вклад)
Для документации этого модуля может быть создана страница Модуль:TableOfChemicals/doc
p = {}
p.fillTable = function(frame)
local out = {}
for idx = 1, 5 do
table.insert(out, idx)
end
return table.concat(out, "<br>")
end
p.fillEffects = function(frame)
local out = {}
for idx = 1, 5 do
table.insert(out, idx)
end
return "effects"
end
return p