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