imported>Hussamsi
No edit summary
 
(No difference)

Latest revision as of 09:39, 13 April 2022

Documentation for this module may be created at Module:Sandbox/RexxS/SayHello/doc

-- 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