Hacker News new | ask | show | jobs
by red-iron-pine 710 days ago
this was my understanding as well. perl grew out of sed/awk/bash, so might as well learn perl.

that said, i found it gives a lot of 'foot-guns'.

1 comments

>> i found it gives a lot of 'foot-guns'.

Most of those are for backward compatilibity with earlier versions.

Recommend you place the following at the top of your Perl scripts:

    use strict;
    use warnings;
These are recommended for all scripts: https://learn.perl.org/first_steps/