in reply to Re: NEVER do this. Ever. Not even once.
in thread Variable Scope
Instead of that syntax, I would recommend one of the following:
The first two still use globals, and are for pre-5.6.0 or before. If you require that 5.6.0 or higher be used, there's absolutely not reason not to use our. None.package MyClass; @ISA = qw(Whatever); use strict; ----- use strict; use vars '@ISA'; package MyClass; @ISA = qw(Whatever); ----- use strict; use 5.6.0; package MyClass; our @ISA = qw(Whatever);
|
---|