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