Module:Print

From Kronopolis and the Flat Plane
Revision as of 15:17, 22 February 2023 by Wioum (talk | contribs)

Documentation for this module may be created at Module:Print/doc

function print()
	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
end