Module:Sandbox/ItamarWMDE/TestModule

From Bonkipedia

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