Help for this page

Select Code to Download


  1. or download this
    foreach my $table (@_) {
        foreach my $key (sort keys %$table) {
    ...
        }
        print "\n";
    }
    
  2. or download this
    foreach my $table (@_) { 
            foreach my $key (sort keys %$table) { print "    $key => $tabl
    +e->{$key}\n" }  
            print "\n";
    }