Help for this page

Select Code to Download


  1. or download this
    my $correct;
     
    ...
    } elsif ($response == $solution) {
        ++$correct;
        print "Correct! You have $correct answers\n";
    
  2. or download this
    my $correct;
    $correct = ++$correct;
    ...
        $quit = 1;
    } elsif ($response == $solution) {
        print "Correct! You have $correct right answers\n";