Jump to content

Module:HelloWorld: Difference between revisions

From wikiNonStop
No edit summary
 
m 1 revision imported: Initial setup
 
(No difference)

Latest revision as of 12:46, 22 December 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