Module:Print: Difference between revisions

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


for idx = 1, 5 do
function p.butt(frame)
table.insert(out, idx)
return "Big butt"
end
end


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

Revision as of 15:47, 22 February 2023

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

local p = {}

function p.butt(frame)
	return "Big butt"
end

return p