in reply to Re^2: Iterating over verbatim hash reference
in thread Iterating over verbatim hash reference
I have a slight preference for omitting variable names if I don't really need them.
If you are concerned about cluttering up a (possibly over-broad) scope with needless nonce variable names (not an entirely unreasonable concern, IMO), why not just enclose the sub-section of code in its own limited sub-scope?
>perl -wMstrict -le "{ my %h = qw(a 1 b 2 c 3); while (my ($k, $v) = each %h) { print qq{$k -> $v}; } } " c -> 3 a -> 1 b -> 2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Iterating over verbatim hash reference
by rovf (Priest) on Jan 22, 2010 at 10:55 UTC |