Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    foreach (sort keys %containers) {
        print "Container $_ has ".@{$containers{$_}}." keys.\n"
    }
    
  2. or download this
    my %containers;
    while (my ($k, $v) = each (%HoA)) {
    ...
    foreach (sort keys %containers) {
        print "Container $_ has $containers{$_} keys.\n"
    }