Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use Moose;
has 'frequency' => (
is => 'ro',
isa => 'Num',
default => 1
);
has 'original_word' => (
is => 'ro',
isa => 'Str',
required => 1
);
has 'word' => (
is => 'ro',
isa => 'Str',
required => 1
);
1;