Modul:Pisang

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas
[lihat] [sunting] [riwayat] [hapus singgahan] Ikon dokumentasi Dokumentasi modul

Templat:Ml-multi

Example Lua module that contains a single function.

hello[sunting sumber]

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

Lihat pula[sunting sumber]

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

function p.hello()
	return "Hello, world!"
end

return p