- or download this
package ClientFactory;
...
my $client = ClientFactory::genericClient();
my $calculator = $client->getCalculator();
- or download this
package Storage;
...
my $client = new Client;
my $calc = $client->getCalculator();
$calc->calculate();
- or download this
sub InvoiceCalculator::calculate {
my $O = shift;
...
}
return;
}