in reply to Trouble Accessing Class Data

you are accessing %BaseClass::ChildClass in _classobj() where you want %ChildClass::ChildClass which holds your class data.

There are more errors which you can easily find by using strict and warnings in your modules as well. Also  use Moose; Moose will make your OO - exercises more fun.


Cheers, Christoph

update: added link