The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Mouse;
has bar => (
isa => 'Str',
is => 'ro',
required => 1,
documentation => 'required option field',
);
sub execute {
my ( $self, $opt, $arg ) = @_;
die 'my Mouse bar is ', $self->bar . "\n";
}
1;