Difference between revisions of "Module:HelloWorld"

From Northumberland Climbing
Jump to navigation Jump to search
module>X-Savitar
 
m (1 revision imported)
 
(No difference)

Latest revision as of 06:50, 31 July 2020

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