Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^5: I can crash perl

by AnomalousMonk (Archbishop)
on Apr 07, 2015 at 12:10 UTC ( [id://1122692]=note: print w/replies, xml ) Need Help??


in reply to Re^4: I can crash perl
in thread I can crash perl

map  { [ $_, expensive($_) } @unsorted

Note that this expression should be
    map { [ $_, expensive($_) ] } @unsorted
(missing right-square-bracket) or even
    map [ $_, expensive($_) ], @unsorted
(needs extra comma).


Give a man a fish:  <%-(-(-(-<

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1122692]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-25 19:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found