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


in reply to Re^3: Why use strict is good, and barewords are bad
in thread Why use strict is good, and barewords are bad

While I like the clever solution to the problem at hand (barewords), I'm much happier that Perl chose the DWIMery of using a default argument of $_, e.g.: perl -Mstrict -lwe 'print for map oct, qw/077 777 034/'

(63, 511, 28) vs. ("oct", "oct", "oct")