Jump to content

Module:Sandbox/Jackmcbarn

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 03:33, 29 August 2014 (test the gerrit change). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.main(frame)
	local args, args_mt = { '__pairs was not used' }, {}
	function args_mt.__pairs( t )
		return pairs( { 'success' } )
	end
	return frame:expandTemplate{ title = 'Echo', args = setmetatable( args, args_mt ) }
end

return p