Module:Sandbox/Davemc0
Appearance
--[[
The following below is some starter code that you may use to get started with module writing and testing.
=p.main('adsfa')
{{#invoke:Sandbox/Davemc0|main|yodawg}}
]]--
local p = {}
p.main = function(frame)
local args = frame.args
local out = 'My Test:' .. args[1]
-- some code here
return out
end
return p