Jump to content

Module:Sandbox/Anne drew

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anne drew (talk | contribs) at 00:55, 9 January 2025 (Undid revision 1268281638 by Anne drew (talk)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--[[
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 = ''
	
	out = out .. 'Hello, world!'
	
	return out
end
return p