Help for this page

Select Code to Download


  1. or download this
    perl -wde 0
  2. 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
    
  3. or download this
    eval "use strict;";
    eval "use warnings;";
    eval "print undef;";
    eval 'print $x[undef];';
    
  4. or download this
    use strict;
    use warnings;
    1
    
  5. or download this
    perl -de 0
      DB<1> use e; print $x[undef]