Module:Sandbox/RexxS/SayHello

Source: Wikipedia, the free encyclopedia.
-- Hi function - PLEASE DON'T EDIT THIS PAGE
local p = {}

p.Hi = function(frame)
	strName = frame.args.name
	return "Hello from Lua to my friend " .. strName .. ".<br>"
end

return p