Help for this page

Select Code to Download


  1. or download this
    while (my $line = <INFILE>) {
        my @line = split /\t/, $line;
    ...
    
        push @lines_of_file, \%hash;
    }
    
  2. or download this
    while (my $line = <INFILE>) {
        my %hash;
    ...
    
        push @lines_of_file, \%hash;
    }