Help for this page

Select Code to Download


  1. or download this
    my $var = <STDIN>;
    while ($var = <STDIN>)
    
  2. or download this
    use strict;
    
    ...
      (print "You guessed too low\n"), next if $guess < $target;
      (print "You guessed too high\n"), next if $guess > $target;
      }