Help for this page

Select Code to Download


  1. or download this
    my $a = A->new();
    $a->b->method();
    $a->c->another_method();
    
  2. or download this
    package A;
    has b => ( isa => 'B' );
    ...
        my ($self) = @_;
        $self->a->exec(...); # Stuff related to C
    }