Help for this page

Select Code to Download


  1. or download this
    my $surname = 'Feynman';
    my @matching_ids =
        grep { $accounts{$_}{surname} eq $surname }
        keys(%accounts);
    
  2. or download this
    die("No records matching surname $surname\n") if !@matching_ids;
    
  3. or download this
    @{ $accounts{$id}{transactions} }