Module:Damage: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 3: Line 3:
function p.hello( frame )
function p.hello( frame )
     for val in pairs(frame.args) do
     for val in pairs(frame.args) do
         print(val)
         return val
     end
     end
end
end


return p
return p

Revision as of 00:24, 20 March 2022

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

local p = {} --p stands for package

function p.hello( frame )
    for val in pairs(frame.args) do
        return val
    end
end

return p