Help for this page

Select Code to Download


  1. or download this
    %Persons_by_surname = ( 'Schwartz' => [ { ..person 1 },
                                            { ..person 2},
                                          ],
    
                            'Wall' => [ {..person 1..} ] );
    
  2. or download this
    my %data= ( 'surname' => \%Persons_by_surname,
                'firstname' => \%Persons_by_firstname,
                # ... and so on
              );