local p = {} -- Defines a variable p as an empty table, but *not* nil.

function p.main( frame )
    return "Hello world"
end

return p