- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my $y = 0010;
...
"
before: '8'
after: '8'
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my $y = '010';
...
before: '010'
after: '10'
11
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my $y = '010';
...
"
before: '010'
11
- or download this
c:\@Work\Perl\monks>perl -wMstrict -le
"my $y = '' . 010;
...
"
before: '8'
9