in reply to Re^2: Can't locate object method- Issue
in thread Can't locate object method- Issue
or even simple code that is not relying on your dynamic typing will fail:bless($self, "Adult"); should be... bless($self, "Person::Adult");
my $a = Person::Adult->new(NAME => 'the hard way'); $a->sayHi();
|
|---|