imported>John Cummings
Created page with 'local m = { helloworld = function(frame) name = frame.args.name or "unknown" return "Hello from Lua " .. name end, } return m'
 
(No difference)

Latest revision as of 10:26, 19 May 2013

Documentation for this module may be created at Module:Sandbox/Mrjohncummings/Second/doc

local m = {
  helloworld = function(frame)
    name = frame.args.name or "unknown"
    return "Hello from Lua " .. name
  end,
}
return m