Module:Sandbox/RexxS/Wd

This is an old revision of this page, as edited by RexxS (talk | contribs) at 21:07, 20 February 2021 (create skeleton). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--[[
Demo of calling Module:Wd from another module
--]]

local p = {}

local wd = require("Module:Wd")

function p.rundemo(frame)
	local out = {}

	local val1 = wd._property( {"Q17533992", "P31" } )
	out[#out+1] = val1



	return ">" .. table.concat(out, "<br>") .."<"

end

return p