Module:Sandbox

Lua

CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules

This module is meant for testing your ideas. Any function could disappear or be changed at any moment so do not use any of them for things other than testing.

See also: Module:Test

Code

local p = {} --p stands for package
			-- {{#invoke:Sandbox|hello}}
function p.hello( frame )
    _, lang = mw.wikibase.getLabelWithLang( 'Q2' ) -- get user's chosen language
    return lang
end

return p