in reply to Re: Re: Use of uninitialized value in concatenation (.) or string
in thread Use of uninitialized value in concatenation (.) or string
To quote from the perldoc:strict where strict vars is implied by not specifying what to be strict about:
The use vars qw($OURVAR) = (); pragma actually declares the variable $OURVAR and initializes it to a known null value instead of leaving it uninitialized. Perl cares about the difference."strict vars" This generates a compile-time error if you access a variable that wasn't declared via "our" or "use vars", localized via "my()", or wasn't fully qualified.
-Kurt
|
|---|