Module:HelloWorld

From wikiNonStop
Revision as of 12:56, 15 August 2024 by Majestix (talk | contribs) (1 revision imported: initial Setup)
(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