Help for this page

Select Code to Download


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