Help for this page

Select Code to Download


  1. or download this
    my %messages = (
      -1 => "too low",
    ...
    while (...) {
      print $messages{ $guess <=> $answer }, "\n";
    }
    
  2. or download this
    my @messages = (
      "just right",
    ...
    );
    
    print $messages[$guess <=> $answer];