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