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:HelloWorld

From wikiNonStop
Revision as of 06:52, 27 December 2024 by Majestix (talk | contribs) (1 revision imported: Initial )
(diff) ā† Older revision | Latest revision (diff) | Newer revision ā†’ (diff)
Module documentation

Usage

This is a simple hello world Module and can be invoked using the following;

{{#invoke:HelloWorld|hello}}

See example test here: HelloWorld module test


local p = {}

function p.hello()
	return 'Hello World'
end

return p