Help for this page

Select Code to Download


  1. or download this
    while (my ($key, $subs) = each %HoL) {
        foreach my $sub (@$subs) {
    ...
            # or &$sub;
        }
    }
    
  2. or download this
    for my $key (keys %HoL) {
      for my $i (@{$HoL{$key}}) {
    ...
        # or &$i;
      }
    }