Help for this page

Select Code to Download


  1. or download this
        'Major task to perform?' => ['task_1','task_2','task_2'],
    
  2. or download this
        'Major task to perform?' =>
           {
             answers => [ 'Add',   'Delete', 'Rename' ],
             keys    => [ 'task_1','task_2', 'task_2' ],
           },
    
  3. or download this
    my $current_key = 'Major task to perform?';
    while ( my $choice = prompt( $current_key, ...)) {
    ...
        # else $current_key = $structure{$current_key}{keys}[INDEX]
    }
    <p>A lot of the code is left as an exercise to the reader. Good luck w
    +ith your class.