Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: "Obviously, You Will Need a Java Course..."

by indigo (Scribe)
on Apr 04, 2001 at 01:57 UTC ( [id://69491]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    try
        {
    ...
        {
          System.out.println( ioerr.toString() );
        }
    
  2. or download this
    open(FH,"myFile.txt") or die "Nope : $!\n";
    
  3. or download this
    die "Nope : $!\n" unless open(FH,"myFile.txt");
    
  4. or download this
    if (not open FH, 'myFile.txt')
    {
        print STDERR "Nope : $!\n";
        exit;
    }
    
  5. or download this
    !open FH => 'myFile.txt' == 0 && die "Nope : $!\n";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://69491]
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-24 00:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found