Help for this page

Select Code to Download


  1. or download this
    sub thingy {
        # blah blah blah...
        local $_;
    ...
        }
        # more stuff here...
    }
    
  2. or download this
    while (defined(my $row = <$fh>)) {
        chomp $row;
        # stuff here...
    }