Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    foreach (keys %{$hoa}) {
        print "\t'$_' => [" . join(',', @{$hoa->{$_}}) . "],\n";
    }
    
  2. or download this
        'c' => [2,0],
        'a' => [1,2],
        'b' => [1,3],