in reply to SCP connection
What is
They don't do anything.use::warnings; use::strict;
use::warnings; # Returns the var "*warnings" in the pkg "use". use::strict; # Returns the var "*strict" in the pkg "use". print $abc; # "use strict" would give an error (not declared), # "use warnings" would give a warning (undefined), # but we get nothing.
You want
use warnings; use strict;
|
|---|