Module:HelloWorld: Difference between revisions

From wikiNonStop
Content added Content deleted
No edit summary
(No difference)

Revision as of 11:40, 10 June 2019

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