package Foo; sub new { my ($class) = @_; my $self = {}; bless $self, $class; } #### use Foo; my $one = Foo->new; my $second = Foo->new;