articles/perl.md: update

This commit is contained in:
tocariimaa 2025-03-04 00:42:18 -03:00
parent 14556145fb
commit d23649fcd9

View file

@ -39,7 +39,7 @@ and all of its features will be enabled:
use v5.34; # enables `say`, `defer`, `try`-`catch` and more... 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 Bash's `set -e`):
```perl ```perl
use autodie; use autodie;