my $object = Classname->new(); # Classname is seen as a class name # and new() is a method of Classname. my $gotten = +subname->new(); # Here subname had better return # either a valid class name or an # object capable of having new() # called as an object method.