Skip to content

Instantly share code, notes, and snippets.

@gnab
Created May 21, 2012 19:35
Show Gist options
  • Save gnab/2764171 to your computer and use it in GitHub Desktop.
Save gnab/2764171 to your computer and use it in GitHub Desktop.
guess.rb
number = rand(10).to_i
puts "Guess the number!"
puts "Wrong answer!" until (gets || '').strip.to_i == number
puts "Correct, the number was #{number}."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment