Octavian Rasnita a écrit :
> 
> Hello all,
> I am a new member. please tell me what is used for the following line in a
> script:
> 
> use strict;
> 
> I saw that if I use it, this make sometimes my scripts to have errors and
> without it, they works.
> Thanks!
> Teddy,
> My dear email address is [EMAIL PROTECTED]
> 
> _________________________________________________________
> 
> Do You Yahoo!?
> 
> Get your free @yahoo.com address at http://mail.yahoo.com
> 
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
because when you use "use strict" you have to declare all your variables
:
#!/usr/bin/perl -w

use strict;
my $local_variable;
$local_variable= "something";

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to