Help for this page

Select Code to Download


  1. or download this
    package C::C1; # That's the perlish name for the module
    use File::FindLib 'lib';
    ...
    }
    # etc
    # Repeat for C and D, ad libidum.
    
  2. or download this
    sub new_d {
        my $self = shift;
    ...
        }
        return $self->{_d};
    }
    
  3. or download this
    use C::C1;
    my $c1 = C::C1->new;
    $c1->a_method_1();   # will execute A::a_method_1
    $c1->b_method_1();   # will execute B::b_method_1
    $c1->new_d(@params)  # will execute $self->{_d} = D->new(@params)