articles/perl.md: this is standard

This commit is contained in:
tocariimaa 2025-03-04 17:59:01 -03:00
parent 87a0d68617
commit bb73a074eb

View file

@ -40,7 +40,7 @@ use v5.34; # enables `say`, `defer`, `try`-`catch` and more...
``` ```
### Automatically die on any error ### Automatically die on any error
This makes a Perl script commit suicide if any error is raised (akin to Bash's `set -e`): This makes a Perl script commit suicide if any error is raised (akin to shell script `set -e`):
```perl ```perl
use autodie; use autodie;
``` ```