in reply to Re: hashes with multiple values per key
in thread hashes with multiple values per key
isn't above same as$yahoo{$key} += $value;
so first $yahoo{$key} would be null + $value and then next time it would come up with that value so that's why it works$yahoo{$key} = $yahoo{$key} + $value
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: hashes with multiple values per key
by kyle (Abbot) on Aug 07, 2007 at 00:41 UTC | |
by GrandFather (Saint) on Aug 07, 2007 at 01:10 UTC |