Help for this page

Select Code to Download


  1. or download this
    $ perl -we'$= = "123 abc"; print $='
    Argument "123 abc" isn't numeric in scalar assignment at -e line 1.
    ...
    $ perl -we'$= = undef; print $-'
    Use of uninitialized value in scalar assignment at -e line 1.
    0
    
  2. or download this
    $ perl -we'undef $=; print $-'
    Use of uninitialized value in undef operator at -e line 1.
    0