Modul:Bananas

Aus Terraria Wiki
Zur Navigation springen Zur Suche springen
Siehe auch die englische Modulseite: Module:Bananas. Sie enthält möglicherweise umfassendere oder aktuellere Informationen.

This is an example Lua module that contains a single function, for testing purposes.

hello

  • {{#invoke:bananas|hello}} → Hello, world!

local p = {}
 
function p.hello()
	return "Hello, world!"
end
 
return p