Help for this page

Select Code to Download


  1. or download this
     foreach $i (sort keys (%{$ref01[0]})) {
      print "$i: ${$ref01[0]}{$i} ${$ref01[1]}{$i} ${$ref01[2]}{$i}\n";
      }
    
  2. or download this
    foreach $i (sort keys (%{$ref01})) {
            print "$i: @{$ref01->{$i}}\n";
            }
    
  3. or download this