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

use Moose;
has 'value' => ( isa => 'Maybe[Num]', is => 'ro', required => 0, default => 0 );
__PACKAGE__->meta->make_immutable;
1;