Help for this page

Select Code to Download


  1. or download this
    $Data::Dumper::Useqq = 1;
    print Dumper \%hash;
    
  2. or download this
    for my $key (sort keys %hash) {
      printf "%-12s %s\n",$key,join ' ',@{$hash{$key}};
    }