Module:Damage: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1: Line 1:
local p = {} --p stands for package
local p = {}
local t = {}


function p.hello( frame )
function p.hello( frame )
    for val in pairs(frame.args) do
  local t = {}
        print(val)
  for name, value in frame:argumentPairs() do
    end
      t[name] = value
  end
end
end


return p
return p