Jump to content

Module:HelloLua

From Costa Sano MediaWiki

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