Help for this page

Select Code to Download


  1. or download this
    local undef $/;
  2. or download this
    $ perl -wle'$_ = "x"; { local undef $_ } print'
    Use of uninitialized value in print at -e line 1.
    
    $ perl -wle'$_ = "x"; { undef local $_ } print'
    x