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

use strict;
use vars qw($VERSION);
$VERSION="0.02";
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
return $self;
}
1;