Modul:Hello: Unterschied zwischen den Versionen

Zur Navigation springen Zur Suche springen
98 Bytes entfernt ,  23. Juli 2018
keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
    local p = {}
-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}


    function p.hello(frame)
function p.hello()
        local name = frame.args[1]
return "Hello, world!"
        if not name then
end
            name = 'Welt'
 
        end
return p
        return 'Hallo, ' .. name .. '! Dies ist Lua!'
    end
    return p

Navigationsmenü