Module:Print

From Kronopolis and the Flat Plane
Revision as of 13:52, 22 February 2023 by Wioum (talk | contribs) (Created page with "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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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