The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

### AI wrapping system, an example is to search for a color selection
sub new {
my $class = shift;
$self = {};
bless $self, $class;
}
1;