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


in reply to Re: Re: Perl Programming guidlines/rules
in thread Perl Programming guidelines/rules

Wow, that really localizes $_ ? To me, it looks more like a straight assignment to $_. I would've expected something like:

sub foo { local $_ = shift; /foo/; }

blyman
:wq