in reply to Re: How do I use @ISA and use strict at the same time?
in thread How do I use @ISA and use strict at the same time?

Another way is to use vars @ISA, this makes the package a little more portable inside of a source tree.
package Question;

use strict;
use vars qw( @ISA );

@ISA = ( "Another" );
  • Comment on Re: Answer: How do I use @ISA and use strict at the same time?