The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestClass;
use strict;
use warnings FATAL => 'all';

sub new
{
    my $class = shift;
    my $self = {};
    bless $self, $class;
}

1;