Help for this page
#!/usr/bin/perl -w use strict; ... my %hash = map { $_++ } @keys; warn "Dump " . dump( %hash ) . "\n";
#!/usr/bin/perl -w use strict; ... $hash{$_}++; } warn "Dump " . dump( %hash ) . "\n";
Dump ("c", "d", "a", "b") # first script Dump ("a", 1, "c", 1, "b", 1, "d", 1) # second script