124 characters :) (remove the newline)
use 5.010;$g=1+int rand 10;while(say"Gimme your guess 1-10:")
{say"too ",qw(0 much few)[<><=>$g]||last}say"Bingo! It was: $g"
expanded out
use 5.010;
$guess = 1 + int rand 10;
while (say "Gimme your guess 1-10:") {
say "too ", qw(0 much few)[<> <=> $guess] || last
}
say "Bingo! It was: $g"
guess"
