in reply to Re: Summing repeated counts for items stored in separate file
in thread Summing repeated counts for items stored in separate file
The scalars $keys and $value don't need initialization, but initializing to an empty string at least makes sense. Initializing a hash as in
is, pardon the bluntness, plain nonsense. Under warnings, Perl warns about it.my %tips_by_name = '';
Anno
|
---|