in reply to Re^4: Point me in the right direction with OO inheritance and static variables
in thread Point me in the right direction with OO inheritance and static variables

If you have your parent and child classes in separate files then you need to get rid of the '-norequire' switch:
package ChildObjects; use parent qw(ParentObjects);
See the docs for parent
  • Comment on Re^5: Point me in the right direction with OO inheritance and static variables
  • Download Code