http://qs321.pair.com?node_id=85815


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

I think the best is
package Question; @Question::ISA=("Another");

Replies are listed 'Best First'.
Re: Answer: How do I use @ISA and use strict at the same time?
by Anonymous Monk on Jun 05, 2001 at 19:10 UTC
    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" );