Module:Sandbox/ItamarWMDE/TestModule

From Bonkipedia
< Module:Sandbox
Revision as of 18:20, 12 November 2022 by ManfredoDo (talk | contribs) (1 revision imported: Module Import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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