The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Object::Benchmark::BlessedRef;
use strict;
use warnings;

    sub new
        {
            my $self = shift;
            
            my $obj = { title => 'Book title',
                        authors => [ qw/Alice Bob/ ],
                        text => 'text' };
            
            bless $obj, $self;
        }

1;