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;
In reply to Re: SCP connection
by ikegami
in thread SCP connection
by mantra2006
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |