Created
January 13, 2016 22:05
-
-
Save jennli/8e926c460d20957eccc3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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