Jump to content

Module:Module sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Awesome Aasim (talk | contribs) at 00:15, 12 March 2025. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--- Welcome to the module sandbox.
-- Use this place to experiment with module editing.
-- Code written here will not stay here permanently.
-- {{Module sandbox heading}}
--
-- @module sandbox
-- @alias p

local p = {}

--- Prints hello world
-- @function p.hello_world
-- @todo make it say "Hello, [name]".
-- @return hello world string.
p.hello_world = function()
	return "Hello world!"
end

return p