Help for this page

Select Code to Download


  1. or download this
    sub parse1 {
        my ($filehandle,$data) = @_;
    ...
        # read from $filehandle and add to $data
    }
    # etc.
    
  2. or download this
    my %data;
    $data{piece1} = parse1($fh);
    ...
        # read from $filehandle
        return $data;
    }