Jump to content

Module:Sandbox/Davemc0

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Davemc0 (talk | contribs) at 04:50, 27 January 2025. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--[[
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
	
	if args.dcv == '1831' then
		out = out .. 'from 1831'
	end
	return out
end
return p