package ConcreteProduct2; use strict; use base qw(Product); sub new { my $class = shift; my $self = {}; bless $self, $class; } sub operation() {} 1;