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) do
        print(val)
    end
end

return p