Perl offers many shortcuts that can help the programmer. Here's
a handy one: you may omit the quote marks on some
hash keys.
# Hash containing bowling scores
my %score = (
barney => 195,
fred => 205,
dino => 30,
);
This is the one important difference between the big arrow and a
comma; a bareword to the left of the big arrow is implicitly quoted.
(Whatever is on the right is left alone, though.) This feature of the
big arrow doesn't have to be used only for hashes, although
that's the most frequent use.
 |  |  |
17.3. Transforming Items from a List with map |  | 17.5. More Powerful Regular Expressions |