Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Perl oddities

by bart (Canon)
on Mar 01, 2005 at 22:40 UTC ( [id://435642]=note: print w/replies, xml ) Need Help??


in reply to Perl oddities

First of all, I'd like open and opendir to have returned an open handle, or undef on failure, instead of changing a passed argument on the side. But Joost already mentioned that.

And second, I find it not just odd but also extremely annoying how the -X operators ignore parens as a hint for parsing precedence. Take this example:

print -M($0) + 1;
This yields:
Argument "test.pl" isn't numeric in addition (+) at test.pl line 2.
Use of uninitialized value in print at test.pl line 2.

Perl treats this the same as

print -M ($0 + 1);

Not exactly what I had in mind. You have to wrap the parens around both operator and argument, to make it behave like I want. Just like Applescript.

print +(-M $0)+1;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-19 10:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found