Module:Damage: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 3: Line 3:
   local o = {}
   local o = {}
   for key, value in pairs(frame.args) do
   for key, value in pairs(frame.args) do
       o = key, " -- ", value
       o = value
   end
   end
   return o
   return o
end
end
return p
return p

Revision as of 00:34, 20 March 2022

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

local p = {}
p.loop = function(frame)
   local o = {}
   for key, value in pairs(frame.args) do
       o = value
   end
   return o
end
return p