in reply to Modify a hash via its reference
Agree with the above, but as a sidebar a couple of notes on coding style that might help readability (none critical, just some things I've picked up bashing around the Monastery):
So,
my %fruits = ( "Apples" => 3, "Oranges" => 6 ); print_hash(();
A great book: Perl: Best Practices.
Good luck!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Modify a hash via its reference
by Errto (Vicar) on Jan 23, 2008 at 22:51 UTC | |
by bradcathey (Prior) on Jan 24, 2008 at 03:26 UTC |