Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Wrong idioms

by vsespb (Chaplain)
on Mar 30, 2013 at 09:43 UTC ( [id://1026261]=note: print w/replies, xml ) Need Help??


in reply to Wrong idioms

sub readfile { my $filename = shift or return; ... }
If this code should only check that filename is defined (i.e. allow empty string), you can write (even for perl <5.10) it like this:
defined(my $filename = shift) or return;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 01:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found