- or download this
use IO::Prompt::Hooked;
...
message => 'Do you wish to update? (Y/N):',
validate => qr/^[YN]$/i,
);
- or download this
my $choice = prompt(
message => 'Do you wish to update? (Y/N):',
validate => qr/^[YN]$/i,
error => "Response must be 'Y' or 'N'.\n\n",
);
- or download this
my $choice = prompt(
message => 'Do you wish to update? (Y/N):',
...
validate => qr/^[YN]$/i,
error => "Response must be 'Y' or 'N'.\n\n",
);