Help for this page

Select Code to Download


  1. or download this
    my $junk;
    while (my ($outterkey,$outterval) = each %$hash)
    {
    ...
        }
      } 
    }
    
  2. or download this
    my %hash;
    while ($line = <INPUTFILE>) {
    ...
        $hash{$1}=$2;
      }
    }