Jump to content

Module:HelloLua

From Costa Sano MediaWiki
Revision as of 15:26, 17 February 2026 by Mngr (talk | contribs) (Created page with "-- Module:HelloLua -- Minimal Scribunto test module local p = {} function p.hello( frame ) local name = frame.args[1] or "world" return "Hello, " .. name .. "!" end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:HelloLua/doc

-- Module:HelloLua
-- Minimal Scribunto test module

local p = {}

function p.hello( frame )
    local name = frame.args[1] or "world"
    return "Hello, " .. name .. "!"
end

return p