Jump to content

Module:Sandbox/RobinLeicester

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by RobinLeicester (talk | contribs) at 22:22, 9 December 2024 (first test). 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)
local p = {} --p stands for package

p.main = function ( frame )
	local args = frame.args
    return "Hello, world!"
end

function nofunction(frame)
	return "Nothing to see here"
end

return p