Difference between revisions of "Module:HelloWorld"
Jump to navigation
Jump to search
Mediawiki>X-Savitar |
Joelmartin (talk | contribs) m (1 revision imported) |
(No difference)
|
Latest revision as of 23:34, 30 November 2019
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