Help for this page

Select Code to Download


  1. or download this
    my %construct;
    push @{ $construct{$_->[1]} }, $_->[2]
        for (@records);
    
  2. or download this
    while (my ($k,$v) = each %construct) {
        print "$k has values: " . join(',', @$v) . "\n";
    }