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. #### use warnings; use strict;