- or download this
use strict;
use Data::Dumper;
print "$]\n", Dumper([qw[ \\d ]]), "\n";
- or download this
# with 5.6.0
5.006
...
$VAR1 = [
'\\d'
];
- or download this
qw(a\\b)
In Perl 5.6.0, qw(a\\b) produced a string with two
backslashes instead of one, in a departure from the
behavior in previous versions. The older behavior has
been reinstated.
- or download this
s/\\\\/\\/g if $] eq '5.006'