Skip to content

Instantly share code, notes, and snippets.

@ashleygwilliams
Created June 12, 2013 02:09
Show Gist options
  • Save ashleygwilliams/5762354 to your computer and use it in GitHub Desktop.
Save ashleygwilliams/5762354 to your computer and use it in GitHub Desktop.
notes about arrays and hashes for alex
myArray = [1,2,3,4,5]
myArray[0] = 1
myArray[1] = 2
myArray.each do |arr|
puts arr
end
myHash = {"a"=>1, "b"=>2, "c"=>3, "d"=>4, "e"=>5}
myHash["a"] = 1
myHash["b"] = 2
myHash["d"] = 4
myHash.each do |key, value|
puts value
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment