Module:Print: Difference between revisions

From Kronopolis and the Flat Plane
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"
 
m Wioum moved page Module:Test to Module:Print without leaving a redirect
(No difference)

Revision as of 13:53, 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