in reply to Re: Summing repeated counts for items stored in separate file
in thread Summing repeated counts for items stored in separate file

Why on earth would you do that?

The scalars $keys and $value don't need initialization, but initializing to an empty string at least makes sense. Initializing a hash as in

my %tips_by_name = '';
is, pardon the bluntness, plain nonsense. Under warnings, Perl warns about it.

Anno