Module:Hello

La bibliothèque libre.

La documentation pour ce module peut être créée à Module:Hello/Documentation

-- test Lua
-- utiliser {{#invoke:hello|helloworld}}
local p = {}

    function p.helloworld()
        return 'Hello World!'
    end
    
-- utiliser {{#invoke:hello|hello|Monsieur X}}    
    function p.hello(frame) -- remarquez le frame
        
        return 'Hello ' .. frame.args[1] .. '!'
    end
return p