Module:Danny B.^P/l

From Wikipedia

Documentation for this module may be created at Module:Danny B.^P/l/doc

local m = {}

function m.print( x )
    local output = ""
    for k,v in pairs( x ) do
        output = output .. "* " .. k .. "=" .. v .. "\n"
    end
    return output
end

return m