show/hide this revision's text 2 added 67 characters in body

130 character 1-liner from the command prompt (120 characters of code if you don't count perl -E):

perl -E '$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g<=><>]}while$_;'

Version to put in a file (131 130 characters of code because I can't cheat and use -E):

use 5.10.0;$g=1+int 5.010;$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g<=><>]}while$_;

Thanks to pjf for suggesting I use 5.010 rather than use 5.10.0. Readable version (just formatted nicely for those of us who can't follow Perl one-liners):

use 5.10.05.010;
$guess = 1 + int rand 10;
@array = ("Bingo! It was: $guess", "too few", "too much");
do{
  say "Gimme your guess 1-10:";
  say $array[$_ = $guess <=> <>]
} while $_;

Of course, none of this is strict- or warnings-safe, but it works.

show/hide this revision's text 1

130 character 1-liner from the command prompt (120 characters of code if you don't count perl -E):

perl -E '$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g<=><>]}while$_;'

Version to put in a file (131 characters of code because I can't cheat and use -E):

use 5.10.0;$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g<=><>]}while$_;

Readable version (just formatted nicely for those of us who can't follow Perl one-liners):

use 5.10.0;
$guess = 1 + int rand 10;
@array = ("Bingo! It was: $guess", "too few", "too much");
do{
  say "Gimme your guess 1-10:";
  say $array[$_ = $guess <=> <>]
} while $_;

Of course, none of this is strict- or warnings-safe, but it works.