in reply to use 5.32

As per use, any use VERSION where VERSION is 5.12 or higher enables strict, as well as the corresponding feature bundle. I would recommend also enabling warnings (see Use strict and warnings), i.e.

#!/usr/bin/env perl use warnings; use 5.032; # or use v5.32

The above shebang uses the perl that's in your PATH, for a specific perl, use e.g. #!/usr/bin/perl.

Replies are listed 'Best First'.
Re^2: use 5.32
by plvicente (Novice) on May 05, 2021 at 18:53 UTC

    Thank you. I decided to use #!/usr/bin/perl instead of #!/usr/bin/env perl