Module:Sandbox/ItamarWMDE/TestModule

From Galim Synthesizers
Jump to navigation Jump to search

Documentation for this module may be created at Module:Sandbox/ItamarWMDE/TestModule/doc

local p = {}
function p.hello(frame)
	if not frame.args.name then 
		return 'Hello World'
	end
    return 'Hello' .. ' ' .. frame.args.name
end
return p