Module:Print: Difference between revisions

From Kronopolis and the Flat Plane
No edit summary
No edit summary
Line 1: Line 1:
function print()
function print()
p = {}
p.loop = function(frame)
p.loop = function(frame)
local out = {}
local out = {}
Line 11: Line 10:
end
end


return p
return 'Boop'
end
end

Revision as of 15:37, 22 February 2023

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

function print()
	p.loop = function(frame)
		local out = {}

		for idx = 1, 5 do
			table.insert(out, idx)
		end

		return table.concat(out, "<br>")
	end

	return 'Boop'
end