Jump to content

Module:Sandbox/RexxS/SayHello

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by RexxS (talk | contribs) at 23:38, 11 December 2017 (update for use in GCI). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

local fn1 = function(frame)
	strName = frame.args.name
	return "Hello from Lua to my friend " .. strName
end

local fn2 = function(frame)
	strName = frame.args.name or "Jimbo"
	return "Hello from Lua to my friend " .. strName
end

return p