Модуль:TableOfChemicals: различия между версиями
Новая страница: «p = {} p.fill = function(frame) local out = {} for idx = 1, 5 do table.insert(out, idx) end return table.concat(out, "<br>") end return p» |
Нет описания правки |
||
| Строка 1: | Строка 1: | ||
p = {} | p = {} | ||
p. | p.fillTable = function(frame) | ||
local out = {} | local out = {} | ||
| Строка 9: | Строка 9: | ||
return table.concat(out, "<br>") | 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 | end | ||
return p | return p | ||