Jump to content

Module:Sandbox/RexxS/SayHello

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Hussamsi (talk | contribs) at 09:39, 13 April 2022. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
-- 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