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:37, 27 January 2025 (Created page with '--The following below is some starter code that you may use to get started with module writing and testing. -- local p = {} p.main = function(frame) local args = frame.args local out = 'My Test' -- some code here return out end return p'). 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)
--[[
The following below is some starter code that you may use to get started with module writing and testing. 

]]--

local p = {}
p.main = function(frame)
	local args = frame.args
	local out = 'My Test'
	-- some code here
	
	return out
end
return p