http://www.perlmonks.org?node_id=11132766


in reply to Re^2: Saving HTTP::Cookies into Netscape format using bless/re-bless
in thread Saving HTTP::Cookies into Netscape format using bless/re-bless

Actually, these behave differently:

Some::Class::method( $obj, @args ); $obj->Some::Class::method( @args );

If Some::Class doesn't contain a sub called method, the former will fail, but the latter will walk Some::Class's @ISA.

Replies are listed 'Best First'.
Re^4: Saving HTTP::Cookies into Netscape format using bless/re-bless
by bliako (Monsignor) on May 20, 2021 at 19:57 UTC

    thanks++, I did not know that.