##
my $wanted_client = 'Mary Smith';
####
for my $client (@client_data) {
if ($client->name eq $wanted_client) {
print "${wanted_client}'s city is ", $client->city;
last;
}
}
####
print "${wanted_client}'s city is ", $client_data_for{$wanted_client}->city;