in reply to Re: Foreach in a 2D array
in thread Foreach in a 2D array
This is probably just a minor nit, but thought I might learn something. My understanding is that there is very little difference (from the perl interpreter standpoint) between:
andmy %hash = ('a', 'b', 'c', 'd');
my %hash = ('a' => 'b', 'c'=> 'd');
Advantages I can think of for the first representation are:
The advantages I can think of for the second representation are:
Essentially => is syntactic sugar for ,.
Update. Missed a tic.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Foreach in a 2D array
by hmerrill (Friar) on Oct 28, 2004 at 18:10 UTC |