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

NAME

Prompt::ReadKey::Sequence - Prompt for a series of items with additional movement options.

SYNOPSIS

my $seq = Prompt::ReadKey::Sequence->new(
options => ..,
items => \@items,
);
my $answers = $seq->run;
my $first_answer = $answers->{ $item[0] };

DESCRIPTION