Jump to content

Module:Sandbox/RexxS/SayHello

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Bumbleglue123 (talk | contribs) at 17:33, 31 December 2017 (Undid revision 817966421 by Jikat2 (talk)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

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

return p