- or download this
upchuck() if ! $healthy;
- or download this
Exception::Of::Doom->throw( error => 'Detailed error messages are impo
+rtant, especially when this error happens' ) if $oops;
- or download this
upchuck() unless $healthy; # doesn't sound right
error() unless happiness_ensues(); # better?
- or download this
if ( ! $healthy ) {
upchuck();
die;
}
- or download this
print STDERR join("\n", @lines), "\n";
- or download this
print STDERR map { "$_\n" } @lines;