Module:Sandbox/RexxS/SayHello

This is an old revision of this page, as edited by 28bytes (talk | contribs) at 01:28, 2 December 2018 (Protected "Module:Sandbox/RexxS/SayHello": per creator request ([Edit=Require extended confirmed access] (expires 01:28, 14 December 2018 (UTC)) [Move=Require extended confirmed access] (expires 01:28, 14 December 2018 (UTC)))). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- 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