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

=head1 NAME
Test::MyCmd::Command::bark - required field is used
=cut
has wow => (
isa => "Str",
is => "ro",
required => 1,
documentation => "required option field",
);
sub execute {
my ( $self, $opt, $arg ) = @_;
die "my dog name barks " . $self->wow . "\n";
}
1;