Help for this page

Select Code to Download


  1. or download this
    %hash = (
            'one' => [1],
    ...
      foreach my $array (keys %hash){
          print $array," :", scalar @{$hash{$array}},$/;
      }
    
  2. or download this
    three :3
    one :1
    two :2