Module:HelloWorld: Difference between revisions

From wikiNonStop
No edit summary
 
m (1 revision imported: initial Setup)
 
(No difference)

Latest revision as of 12:56, 15 August 2024

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