More actions
No edit summary Tag: Reverted |
No edit summary Tags: Manual revert Reverted |
||
Line 1: | Line 1: | ||
p = {} | |||
p.loop = function(frame) | |||
local out = {} | |||
for idx = 1, 5 do | |||
table.insert(out, idx) | |||
end | end | ||
return | return table.concat(out, "<br>") | ||
end | end | ||
return p |
Revision as of 13:10, 22 February 2023
Documentation for this module may be created at Module:Print/doc
p = {}
p.loop = function(frame)
local out = {}
for idx = 1, 5 do
table.insert(out, idx)
end
return table.concat(out, "<br>")
end
return p