Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: RFC: "Best Practices" code review section

by radiantmatrix (Parson)
on Aug 15, 2005 at 19:14 UTC ( [id://483955]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package OpenOrDie;
    use strict; use warnings;
    ...
        
        return $fh;
    }
    
  2. or download this
    use OpenOrDie;
    
    my $FILE = Open('<',$filename);
    
  3. or download this
    eval {
       my $FILE = Open('<',$filename);
    ...
       warn("Cannot parse configuration; $@");
       $config{skip} = 1;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-26 08:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found