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

use strict;
package CeeJay;
# ABSTRACT: All about me. Cee Jay
our $VERSION = '0.0.3';
sub new {
my $class = shift;
my $self = bless { @_ }, $class;
return $self;
}
1;