dev
Documentation icon Module documentation
[create]

The documentation for this module is missing. Click here to create it.

-- <nowiki>
local p = {}

function p.hello()
    return "Hello, world! I'm Dev."
end

function p.lang()
    return "mw.language.getContentLanguage():getCode() = " ..
            mw.language.getContentLanguage():getCode()
end

function p.main()
    return "Hello, world! I'm Dev."
end

return p