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