Jump to content

Module:Sandbox/Arjunaraoc

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Arjunaraoc (talk | contribs) at 10:24, 16 April 2022. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {} --p stands for package

function p.hello( frame )
    return "Hello, world!"
end


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

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

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

return p