Module:HelloWorld

From Northumberland Climbing
Revision as of 06:50, 31 July 2020 by Ianbirtwistle (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Usage[edit]

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