Help for this page

Select Code to Download


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