Within the thread "need -> HELP" I saw something I have not seen before:
My question is: What is the added value to the use warnings here since the -w option already delivers warnings?
I am interested in it since I try to get my code more secure/save.
Code:
#!/usr/bin/perl -w
use strict;
use warnings;
My question is: What is the added value to the use warnings here since the -w option already delivers warnings?
I am interested in it since I try to get my code more secure/save.