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


in reply to What operator should perl5porters use for safe dereferencing?

I voted None because the -> makes more sense, and you should always use Safe and strict ;-)

~Thomas~
I believe that the source code to life is written in Perl :-)

Replies are listed 'Best First'.
Re^2: What operator should perl5porters use for safe dereferencing?
by de-merphq (Beadle) on May 29, 2012 at 15:29 UTC
    I am curious what relevance you think Safe has, and why you would consider a deprecated module mandatory?

    Update: oh, maybe it is not deprecated.

    ---
    alter ego of demerphq

      Safe, while perhaps not the best example, does allow execution without the risk of your program dieing. I guess it's for the folks who have something against eval.

      ~Thomas~
      I believe that the source code to life is written in Perl :-)
        Um, no, eval prevents dieing, Safe prevents ops you don't allow (in theory) like exit, system, etc