Help for this page

Select Code to Download


  1. or download this
    # warning: untested
    my %collection;
    ...
       my ($artist, $album, $song) = split;
       push @{$collection{$artist}{$album}}, $song;
    }
    
  2. or download this
    foreach my $artist (keys %collection) {
       print "$artist:\n";
    ...
          print join("\n\t\t", @{$collection{$artist}{$album}}), "\n";
       }
    }