Jump to content
šŸ—³ļøšŸ–„ļø The Wikimedia Foundation December 2024 Developer Satisfaction Survey closes on the 2025-01-03. This survey helps us measure developer satisfaction, and prioritize work on tools and platforms for our technical contributors.

Module:Bananas

From wikiNonStop
Revision as of 11:06, 16 June 2023 by en>Clump (Reverted edits by Codmal (talk) to last version by Esteban16)
(diff) ā† Older revision | Latest revision (diff) | Newer revision ā†’ (diff)
Module documentation

Example module referenced by Extension:Scribunto/Lua reference manual

local p = {} --p stands for package
 
function p.hello( frame )
    return "Hello, world!"
end
 
return p