Skip to content

Instantly share code, notes, and snippets.

@AndrewGuard
Created December 20, 2013 20:13
Show Gist options
  • Save AndrewGuard/8060701 to your computer and use it in GitHub Desktop.
Save AndrewGuard/8060701 to your computer and use it in GitHub Desktop.
puts "Type a word (or press enter to finish):"
word = gets.chomp
word_list = []
word_list << word
until word == ""
puts "Type a word (or press enter to finish):"
word = gets.chomp
word_list << word
end
word_list.delete_at(-1)
word_list.sort!
puts "Congragulations! Your dictionary has #{word_list.count} words!"
puts word_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment