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


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

I can't understand what can be the problem with the code..

see chomp , not exactly easy to see at a glance what the return value is , you'll have to read that prose or employ tricks :)

$ perldoc -f chomp |ack return -A1 $INPUT_RECORD_SEPARATOR in the "English" module). It retur +ns the total number of characters removed from all its arguments. + It's -- number of characters removed is returned.

Replies are listed 'Best First'.
Re^8: Use of "my" after Perl v5.14
by Rohit Jain (Sexton) on Sep 21, 2012 at 00:28 UTC
    Thanks :)

    Got it worked now.. Have to move chomp() outside that method call.. And then pass the modified numList as a Parameter..