in reply to (tye)Re: "use vars" will remain (Re: Win32 EXPORT_OK problems)
in thread Win32 EXPORT_OK problems
whereas with use vars, declaration and initialization must always be separate steps:my $num = 7; our $str = 'Hello';
use vars qw/ $str /; $str = 'Hello';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re2: "use vars" will remain (Re: Win32 EXPORT_OK problems)
by tye (Sage) on Dec 27, 2000 at 01:48 UTC |