http://qs321.pair.com?node_id=732738


in reply to Need help with OO perl

($self->{lib}) = ($lib->print_name()); just put undef into $self->{lib} and undef->print_name can not work later. maybe you should replace
($self->{lib}) = ($lib->print_name());
with:
$self->{lib} = $lib;
Boris