show/hide this revision's text 3 Incorporate bubaker's suggestion for while loop. Also, use $_ instead of $x.

I never played golf before:. Here is the edited version following bubaker's suggestion.

#!/usr/bin/perl

use strict;
use warnings;

my @m = ('you 'you win', 'too small', 'too big' )big');
my $g = 1 + int(rand 10)int rand 10;

while ( 1 ) do {
    print "Gimme your guess 1-10:\n";
    my $x _ = $g <=> <STDIN>;
    print "$m[$x]\n";
    $x or last;
$m[$_]\n";
} while $_;

__END__
show/hide this revision's text 2

I never played golf before:

#!/usr/bin/perl

use strict;
use warnings;

my @m = ( 'you win', 'too small', 'too big' );
my $g = 1 + int(rand 10);

while ( 1 ) {
    print "Gimme your guess 1-10:\n";
    my $x = ( $g <=> <STDIN> );
    <STDIN>;
    print "$m[$x]\n";
    $x or last;
}
show/hide this revision's text 1

I never played golf before:

#!/usr/bin/perl

use strict;
use warnings;

my @m = ( 'you win', 'too small', 'too big' );
my $g = int(rand 10);

while ( 1 ) {
    print "Gimme your guess 1-10:\n";
    my $x = ( $g <=> <STDIN> );
    print "$m[$x]\n";
    $x or last;
}