The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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