http://qs321.pair.com?node_id=972021


in reply to Re: Need help with a simple perl script
in thread Need help with a simple perl script

Actually, no. Why should anyone set $_ to anything just to overwrite the value in a for loop? The code works - why does it need any modification? See perlvar for the special variable $".

Replies are listed 'Best First'.
Re^3: Need help with a simple perl script
by uday_sagar (Scribe) on May 24, 2012 at 11:41 UTC

    Okay, I agree with $". Thanks

    For the while loop, as "print" is not contained in while, it ll take the inputs all the time without printing anything.

      For the while loop, as "print" is not contained in while, it ll take the inputs all the time without printing anything.
      Not really. "print" is in a for loop, and it prints the output as desired, because the for loop uses the implicit variable $_.