Modul:Luafunktionstest: Unterschied zwischen den Versionen
Aus SchnuppTrupp
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
-- For unit tests, see [[Module:Bananas/testcases]] | -- For unit tests, see [[Module:Bananas/testcases]] | ||
− | local p = {} | + | -- local p = {} |
− | function | + | function add(a,b) |
local a | local a | ||
local b | local b | ||
− | + | return a+b | |
− | + | -- p = result .. ':a + b is ' .. a + b .. '\n' | |
− | + | -- return p | |
end | end |
Aktuelle Version vom 3. Januar 2017, 12:05 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Luafunktionstest/Doku erstellt werden
-- For unit tests, see [[Module:Bananas/testcases]] -- local p = {} function add(a,b) local a local b return a+b -- p = result .. ':a + b is ' .. a + b .. '\n' -- return p end