articles/perl.md: update

This commit is contained in:
tocariimaa 2025-03-04 13:50:45 -03:00
parent 29d4656e3a
commit 87a0d68617

View file

@ -45,6 +45,11 @@ This makes a Perl script commit suicide if any error is raised (akin to Bash's `
use autodie;
```
## Miscellaneous weirdness
- When calling the Perl interpreter directly, any [shebang](shebang.md) at the top of the script that doesn't actually call
the Perl interpreter itself gets executed, just like the kernel would interpret the shebang.
- ...
## Examples
### Hello world
```perl