Skip to content

Instantly share code, notes, and snippets.

@MelanieS
Created November 20, 2010 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MelanieS/707685 to your computer and use it in GitHub Desktop.
Save MelanieS/707685 to your computer and use it in GitHub Desktop.
words = ['rocks', 'giraffes', 'nilla', 'dinosaur']
puts 'Need input! Input:'
input = gets.chomp
found = false
words.each do |i|
if input == i
found = true
end
end
if found == true
puts 'Congrats!'
else puts 'Fail!'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment