Skip to content

Instantly share code, notes, and snippets.

@agentfin
Created December 21, 2011 04:53
Show Gist options
  • Save agentfin/1504644 to your computer and use it in GitHub Desktop.
Save agentfin/1504644 to your computer and use it in GitHub Desktop.
Sorting my array [Chris Pine Ch 8]
# alphabetting
puts 'Tell us some of your favorite things!'
# create an array
words = []
puts words
while (thing = gets.chomp) != ''
words.push thing
end
puts words.sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment