Module:HelloWorld: Difference between revisions

From Galim Synthesizers
Jump to navigation Jump to search
MediaWIki>X-Savitar
No edit summary
 
m (1 revision imported)
 
(No difference)

Latest revision as of 15:29, 11 November 2022

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