NAME

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

SYNOPSIS

use Prompt::ReadKey::Sequence;

my $seq = Prompt::ReadKey::Sequence->new(
	options => ..,
	items => \@items,
);

my $answers = $seq->run;

my $first_answer = $answers->{ $item[0] };

DESCRIPTION