HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/libio-prompt-perl/examples/menu.pl
use IO::Prompt;

my $answer = prompt 'Please select the most correct answer...', -1,
                    -menu => [
                        'Perl is an interpreted language',
                        'Perl is the Swiss Army Chainsaw',
                        'Perl rocks, dude!',
                        'All of the above',
                    ];

print "You chose: [$answer]\n\n";

   $answer = prompt 'Please select the most correct answer...', -1,
                    -menu => {
                        interpreted => 'Perl is an interpreted language',
                        Swiss       => 'Perl is the Swiss Army Chainsaw',
                        Rocks       => 'Perl rocks, dude!',
                        all         => 'All of the above',
                    };

print "You chose: [$answer]\n\n";