Help for this page

Select Code to Download


  1. or download this
    my $op;
    do { ... } until ($op =~/Q/i);
    
  2. or download this
    if ($op =~/Q/i) {
    print "Just hit enter to shuffle though all prompts\n";
        }
    
  3. or download this
    last if $op =~ /Q/i;