package Y; use strict; sub new { my $class = shift; my $self = {}; bless $self, $class; } sub operationY { } 1;