From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

sub new {
my ($class) = @_;
my $self = {
};
$class = ref($class) || $class;
bless $self, $class;
}
1;