Jump to content

Module:Sandbox

Permanently protected module
From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Paine Ellsworth (talk | contribs) at 01:49, 22 March 2023 (per edit request on talk page - implement starter code). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

--[[
Please do not edit this page. This page serves as a root for the sandbox.

The following below is some starter code that you may use to get started with module writing and testing. Please feel free to take this to get started on your module.

Remember to remove this top notice when copying and pasting from here to your module sandbox.
]]--

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