@Success:
Special:Random Special:ThisIsNotARealSpecialPage
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