Jump to content

Module:Sandbox/MSGJ

From Wikipedia, the free encyclopedia
require('strict')
local p = {}

p.main = function(frame)
	local fargs = frame.args
	local pargs = frame:getParent().args
	return (fargs.x or 'X') .. ', ' .. (pargs.x or 'X')
end

return p