Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rwmotivation/a0efc51cd7ed3e8ca98518febd716b85 to your computer and use it in GitHub Desktop.
Save rwmotivation/a0efc51cd7ed3e8ca98518febd716b85 to your computer and use it in GitHub Desktop.
Basic ruby program that asks for your favorite number, then tells you a better number
puts "What is your favorite number?"
num = gets.chomp
better = num.to_i + 1
puts "Your favorite number is okay, here is a bigger, better favorite number: " + better.to_s + '.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment