in reply to Use of uninitialized value in concatenation (.) or string
I sheepishly admit I come from the old school where declaring variables is necessary. A sideline from starting as a COBOL, RPG, and Transact programmer. It became a habit and use strict; requires it. See Perldoc strict for more info.
This will get you there:
Add other variables inside the parens to initialize them too.use vars qw($OURVAR) = ();
-Kurt
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Use of uninitialized value in concatenation (.) or string
by P0w3rK!d (Pilgrim) on May 20, 2003 at 15:18 UTC | |
by KPeter0314 (Deacon) on May 20, 2003 at 22:21 UTC |