in reply to Re: my $self is stumped!
in thread my $self is stumped!

BTW if you change that to:

if ( ref($self) eq 'person'){ $self->tellName(); } if ( ref($self) eq 'child') { person::tellName($self);}
It will then work as expected, though I still wouldn't recommend it because now you have no way to override the behavior of tellName.


___________
Eric Hodges