Help for this page

Select Code to Download


  1. or download this
    sub _wafer_parse {
        my $self = shift;
    ...
        local *_;
        while ( <$FILE> ) { ... }
    }
    
  2. or download this
    sub _wafer_parse {
        my $self = shift;
    ...
    
        while ( my $line = <$FILE> ) { ... }
    }