Help for this page

Select Code to Download


  1. or download this
    my %names;
    while (<>) {
    ...
            next unless defined $line[2];
            $names{$line[0]} = [@line[1,2]];
    }
    
  2. or download this
    print "values for bill: $names{'bill'}->[0] , $names{'bill'}->[1]";
    
  3. or download this
    $names{'bill'}->[0] = 3;