Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: One out of three ain't bad

by davido (Cardinal)
on Oct 22, 2005 at 06:28 UTC ( [id://502188]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open FH, '>', 'filename' or die $!;
    
  2. or download this
    die $! unless open FH, '>', 'filename';
    
  3. or download this
        open(FOO,$foo) || die "Can't open $foo: $!";
    
  4. or download this
        die "Can't open $foo: $!" unless open(FOO,$foo);
    

Log In?
Username:
Password:

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

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

    No recent polls found