- or download this
my $lib = test1->new();
($self->{lib}) = ($lib->print_name());
- or download this
my $lib = test1->new();
$self->{lib} = $lib;
$lib->print_name();
- or download this
$self->{lib} = test1->new();
$self->{lib}->print_name();
- or download this
sub print_name {
my $self = shift;
print "I forgot what went here";
return $self;
}