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

package Dummy;
use strict;
use Params::Validate qw(SCALAR);
__PACKAGE__->mk_accessors(qw(
dummy
));
sub new {
my $class = shift;
my $self = bless {}, $class;
return $self;
}
1;