Help for this page

Select Code to Download


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