Help for this page

Select Code to Download


  1. or download this
    my %people;
    while( my $line = <IN> ) {
    ...
            push @{$people{$name}}, $value; # push 2nd,3rd,.. value on arr
    +ay
        }
    }
    
  2. or download this
    %people = (
              'Andreas' => [
    ...
                           '08'
                         ]
            );