imported>Natkabrown
No edit summary
 
(No difference)

Latest revision as of 10:33, 19 May 2013

Documentation for this module may be created at Module:Sandbox/Natkabrown/1/doc

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