There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
Documentation for this module may be created at Module:Welcome/Infovarius/doc
-- {{#invoke:Etherpad|sum|1|2|3|4|5}}
local p = {}
function p.sum( frame)
local res = 0
for k,v in pairs( frame.args ) do
res = res + v
end
return res
end
return p