--[[
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