Modul:Test: Unterschied zwischen den Versionen
Aus SchnuppTrupp
Zeile 1: | Zeile 1: | ||
local p = {} | local p = {} | ||
− | function p. | + | |
− | + | function p.variables() | |
− | + | local variable = 1 | |
− | + | ||
− | + | variable = variable + 1 | |
+ | return variable | ||
end | end | ||
+ | |||
return p | return p |
Version vom 11. August 2016, 18:17 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Test/Doku erstellt werden
local p = {} function p.variables() local variable = 1 variable = variable + 1 return variable end return p