模块:RceEscape MwApi

来自希服维基

可在模块:RceEscape MwApi/doc创建此模块的帮助文档

local p = {}
function p.test()
    local results = {}
    for k, v in pairs(mw) do
        if type(v) ~= "table" then
            results[#results+1] = k .. "=" .. type(v)
        end
    end
    return table.concat(results, " | ")
end
return p