On 12/15/05, Beast <[EMAIL PROTECTED]> wrote:
> In perlmodlib :
> vars        Predeclare global variable names (obsolete)

> If this is obselete then what is the newer version of predeclare global
> variables?

Replace things like

   use vars qw($FOO)

with

   our $FOO;

(unless you need to assure compatibility for versions before 5.6).

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to