On Wed, 09 Aug 2000 11:41:20 +0100, Hildo Biersma wrote:

>Could we agree on the idea that CGI.pm should be split up?

No. I could agree that

        CGI->somemethod(@args);

would do exactly the same as

        CGI::somemethod(@args);

i.e. no difference between function calls and class methods, unless the
method explicitely wants to know.

Why make module authors' life even more miserable?

Passing the class/object in a magic variable, e.g. $SELF, instead of in
the arguments list, is one way.

-- 
        Bart.

Reply via email to