Modul:Luafunktionstest

Aus SchnuppTrupp
Wechseln zu: Navigation, Suche

Die Dokumentation für dieses Modul kann unter Modul:Luafunktionstest/Doku erstellt werden

-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}

function p.add()
    local a 
    local b 
    local result

    result = result .. ':a + b is ' .. a + b .. '\n'
    return result
end