Module:Johnuniq/Simple

From Wikipedia

Documentation for this module may be created at Module:Johnuniq/Simple/doc

-- This is a very simple module doing minimal work.
-- Want to determine total Lua time usage if invoke this 1000 times.

local p = {}

function p.main(frame)
    local pframe = frame:getParent()
    local parm = pframe.args[1] or '?'
    return 'Hello ' .. parm
end

return p