> I've started always using the second notation just because it never parses incorrectly.
I'd rather go for extra semicolon:
- %set= map {; $_ => foo($_) } @list;
demo with perl -de0
DB<45> x map {a=>1} 1..3; # seeing hash, but co
+mma missing
syntax error at (eval 55)[c:/Strawberry/perl/lib/perl5db.pl:738] line
+2, near "} 1"
DB<46> x map {a=>1}, 1..3; # seeing hash again
0 HASH(0x2f501e8)
'a' => 1
1 HASH(0x2f4a1e8)
'a' => 1
2 HASH(0x2f4d0e0)
'a' => 1
DB<47> x map {;a=>1} 1..3; # seeing code
0 'a'
1 1
2 'a'
3 1
4 'a'
5 1
DB<48>
YMMV! :)
edit
Anyway, Perl should check for the missing comma. I suppose this happens too late for the parser.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.