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


in reply to Questions about curious idiom seen in package

... does this leading "undef" really do anything?

It does nothing. It is a compulsive programming tick akin to
    my $scalar = undef;
    my @array = ();
    my %hash = ();
In the latter two cases, I can barely see some occasional justification for the practice because it may relieve the onerous burden of having to write a comment like
    my @ra;  # this array will remain empty until something is put into it
Otherwise...


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^2: Questions about curious idiom seen in package
by karlgoethebier (Abbot) on Feb 18, 2019 at 15:35 UTC
    “It does nothing”.

    Probably the best behavior for “something” (or how ever you may call it) in Perl.

    May be this is the best thread so far in this year. It made my day. Best regards, Karl

    «The Crux of the Biscuit is the Apostrophe»

    perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help