Jump to content

Module:Stock tickers/NYSE

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Svgalbertian (talk | contribs) at 18:57, 2 August 2014 (basic input/output test). 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)

local getArgs = require('Module:Arguments').getArgs
local p = {}
 
function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end
 
function p._main(args)
	return args[1]
end
 
return p