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 11:10, 19 May 2013 (+ end). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {
  fnHelloworld = function(frame)
  strName = frame.args.name or "Unknown"
  return "Hello from Lua to my pal" .. strName
  end
}