Help for this page

Select Code to Download


  1. or download this
    while(<FILE>)
    {
    ...
    
      print "$_\n";   # here $_ has a value of undef and causes problems
    }
    
  2. or download this
    sub doSomething
    {
    ...
       # At this point in the code, $_ is undef and since $_ is
       # global...
    }