Module:LuaTest
From Rhizome Artbase
			just testing
local p = {}
 
function p.hello( frame )
    return "Hello, world! ROFL"
end
function p.rhiz( frame )
    local r = mw.wikibase.getEntity( 'Q1996' )
    mw.log(r)
    return r:getLabel()
end
 
return p