Modul:Test: Unterschied zwischen den Versionen
Aus SchnuppTrupp
| Zeile 6: | Zeile 6: | ||
return 'Und hier soll auch etwas stehen!' | return 'Und hier soll auch etwas stehen!' | ||
end | end | ||
| − | |||
| − | |||
function p.variables() | function p.variables() | ||
local variable = 1 | local variable = 1 | ||
Version vom 11. August 2016, 18:20 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Test/Doku erstellt werden
local p = {}
function p.hello(frame)
return 'Ich will, dass hier etwas steht! [[Korbis Baustelle5]]'
end
function p.test(frame)
return 'Und hier soll auch etwas stehen!'
end
function p.variables()
local variable = 1
variable = variable + 1
return variable
end
return p