Skip to content

Instantly share code, notes, and snippets.

@jennli
Created January 13, 2016 22:05
Show Gist options
  • Save jennli/8e926c460d20957eccc3 to your computer and use it in GitHub Desktop.
Save jennli/8e926c460d20957eccc3 to your computer and use it in GitHub Desktop.
array_words = []
loop do
puts "please enter some book names one at a time, hit exit when you are done"
name = gets.chomp
break if name.upcase == "EXIT"
array_words << name
end
puts
puts array_words.map{|x| x.capitalize}.sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment