Why is the following snippet producing a 'syntax error'?
perl -Mstrict -wle"my %x = map{ 'A' => $_ } 1 .. 10"
syntax error at -e line 1, near "} 1"
Execution of -e aborted due to compilation errors.
Note: I know it may not be logical to assign one key, 10 different values one after the other, but a syntax error?
Note also that both of these are legal:
perl -Mstrict -wle"my %x = map{ $_ => $_ } 1 .. 10"
perl -Mstrict -wle"my %x = map{ 'A' . $_ => $_ } 1 .. 10"
But this also isn't "legal syntax" (regardless of whether you use qq// or ""), even though it is logical.
P:\test>perl -Mstrict -wle"my %x = map{ qq[A_$_] => $_ } 1 .. 10"
syntax error at -e line 1, near "} 1"
Execution of -e aborted due to compilation errors.
So this isn't just a case of over-zealous code policing?
It woudn't be quite so bad if it didn't point you at the wrong part of the statement as the source of the error.
Perl 5.8.4 (AS810).
Examine what is said, not who speaks.
"But you should never overestimate the ingenuity of the sceptics to come up with a counter-argument." -Myles Allen
"Think for yourself!" - Abigail
"Time is a poor substitute for thought"--theorbtwo
"Efficiency is intelligent laziness." -David Dunham
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon
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.