Documentation for this module may be created at Module:Sandbox/Arjunaraoc/doc
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