Help for this page

Select Code to Download


  1. or download this
    while (<MYFILE>)
    {
    ...
        $mylist{$1} = {value => $2, linenum => $. };
      }
    }
    
  2. or download this
    for my $key ( keys %mylist )
    {
    ...
    
      print "$key has value $value, found on line $linenum\n";
    }