- or download this
perl -wde 0 - or download this
> perl -we "print 0+'abc'"
Argument "abc" isn't numeric in addition (+) at -e line 1.
0
> perl -wde 0
DB<1> print 0+'abc'
0
- or download this
eval "use strict;";
eval "use warnings;";
eval "print undef;";
eval 'print $x[undef];';
- or download this
use strict;
use warnings;
1
- or download this
perl -de 0
DB<1> use e; print $x[undef]