Модуль:TableOfChemicals: различия между версиями
Материал из Space Station 14 Вики
(Новая страница: «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 |
Версия от 20:01, 23 апреля 2024
Для документации этого модуля может быть создана страница Модуль: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