- or download this
my $errorlog='';
if (...) {
...
} else {
say 'All done, bye.';
}
- or download this
# We don't need that. It's just wrong: my $errorlog='';
if (...) {
...
warn 'Outch";
}
say "All done, bye.";
- or download this
if (...) {
die 'Input data is f*cked up beyond repair. Died to prevent a cras
+h';
}