Module:Friskotest

From Wikipedia

Documentation for this module may be created at Module:Friskotest/doc

local p = {}

	function p.test( frame )
			if mw.wikibase == nil then
				return 'Not yet install Extension:Wikibase ?'
			end
	
		local entity = mw.wikibase.getEntity( "Q2" )
		return entity.claims['P2284']
	end

return p