Jump to content

Module:Testconversion

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Idiosyncratic malapropism (talk | contribs) at 15:14, 27 March 2025 (Created page with '-- Define a new module local p = {} -- A function that returns a greeting function p.hello() return "Hello, Wikipedia!" 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)
-- Define a new module
local p = {}

-- A function that returns a greeting
function p.hello()
    return "Hello, Wikipedia!"
end

return p