in reply to Re: Use of "my" after Perl v5.14
in thread Use of "my" after Perl v5.14

Frankly, I didn't understand few segments of that code.. (Especially that BEGIN..But will come over again when I gain some more experience coding Perl..

Thank You :)

Replies are listed 'Best First'.
Re^3: Use of "my" after Perl v5.14
by AnomalousMonk (Archbishop) on Sep 21, 2012 at 08:23 UTC
    I didn't understand few segments of that code.. (Especially that BEGIN..

    Those two blocks are inserted by the compiler in response to the  -w and  -l command line switches, respectively. (See perlrun for info on all switches.) Try deparsing the command line invocation with and without the switches and see the effect!