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