Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success 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;