Help for this page

Select Code to Download


  1. or download this
    if (foo()) {
        print "Everything is copacetic!\n";
    } else {
        print "Whoops! Something went terribly wrong!\n";
    }
    
  2. or download this
    if (foo()) {
        print "Everything is copacetic!\n";
    } else {
        print "Error: $!\n";
    }
    
  3. or download this
    ($value, $errorMsg) = foo();
    
    ...
    } else {
        print "Error: $errorMsg\n";
    }