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

No Problem!
use strict; package InheritedClass; # ... stuff for InheritedClass package NewClass; @NewClass::ISA = ("InheritedClass");
Strict was kvetching about @ISA, which is actually a class variable within NewClass.

Originally posted as a Categorized Answer.