- or download this
Container = SharedHouse
Element = Person
->do_something = ->pay_rent
- or download this
my $cont = SharedHouse->new('Prag');
my $elem = Person->new('Egon');
...
# method chaining
$cont->get_elem('Egon')->pay_rent();
- or download this
$elem1 = $cont1->get_elem('Egon');
$elem2 = $cont2->get_elem('Egon');