show/hide this revision's text 3 fixed spelling
$im_thinking_of=int(rand 10);
print "Pick a number:";
$guess=;
guess=<STDIN>;
chomp $guess;

if ($guess > > $i'm_thinking_of) {
    print "You Guessed To High!\n"guessed too high!\n";
}
elsif ($Guess < $i'm_thinking_of) {
      print "You Guessed to Low!\n"guessed too low!\n";

}
else {
     print "You Got It Right!\n"got it right!\n";
}
show/hide this revision's text 2 deleted 15 characters in body

!/usr/bin/perl

$im_thinking_of=int(rand 10); print "Pick a number:"; $guess=; chomp $guess;

if ($guess > $i'm_thinking_of) { print "You Guessed To High!\n"; } elsif ($Guess < $i'm_thinking_of) { print "You Guessed to Low!\n";

} else { print "You Got It Right!\n"; }

show/hide this revision's text 1

!/usr/bin/perl

$im_thinking_of=int(rand 10); print "Pick a number:"; $guess=; chomp $guess;

if ($guess > $i'm_thinking_of) { print "You Guessed To High!\n"; } elsif ($Guess < $i'm_thinking_of) { print "You Guessed to Low!\n";

} else { print "You Got It Right!\n"; }