#!/usr/bin/perl
use Modern::Perl;
while (<>)
{ chomp;
say reverse;
}
The above code doesn't work but when I change 2nd last line to say scalar reverse; then it works fine. Why do I need to force it to be a scalar explicitly? Can't Perl DWIM?
The above code doesn't work but when I change 2nd last line to |
|||
|
If I understand the documentation right, Forcing Perl probably does DWIM, just for given values of "I". A breakdown of what reverse does when:
|
|||||
|
Why do I need to force it to be a scalar explicitly? As documented, Can't Perl DWIM? Yes, it could do what you want (scalar behaviour when no argument expression is present). It could be confusing, though. I can't think of any other operator that changes behaviour based on a lack of an argument expression (as opposed to just lack of arguments). |
|||||||||||
|
reverseimplicitly uses$_, i.e. it does use$_in scalar context, but not in list context. (@a = reversevs$a = reverse) Is this a bug, or working as intended? – TLP Oct 23 '11 at 14:37