- or download this
package Person;
...
->set_last_name($last);
...
}
- or download this
sub mail_customers {
foreach my $customer (@customers) {
...
...
}
}
- or download this
$stats{ $customer->address->postcode }++; # zip codes
- or download this
foreach my $customer(@customers) {
next if ! valid_mail_recipient($customer);
...
...
}
}