in reply to map syntax bug-a-boo?
It would appear that, because of what you have put inside the {...}, Perl is taking that to be an expression and thus needing a comma after it.
does not produce errors. And if you say:use strict; my @l = 1..10; map { 1, 2 }, @l; map { "$_", 2 }, @l;
you will see a bunch of hash-refs. So Perl is seeing {1,2} as an anonymous hash rather than as a BLOCK that happens to return something. (A very reasonable reading now that we look at it that way.)print map { 1, 2 }, @l; print map { "$_", 2 }, @l;
------------------------------------------------------------
"Perl is a mess
and that's good because the
problem space is also a mess." - Larry Wall
|
---|
Replies are listed 'Best First'. | |
---|---|
(MeowChow) Re: map syntax bug-a-boo?
by MeowChow (Vicar) on Nov 30, 2001 at 09:13 UTC |