Skip to content

Instantly share code, notes, and snippets.

View newfront's full-sized avatar
:shipit:
Working on open-source and internal projects

Scott Haines newfront

:shipit:
Working on open-source and internal projects
View GitHub Profile
@newfront
newfront / Ruby_1.9_Hashes.rb
Created February 11, 2011 19:45
Notes to help remember the interesting tidbits
(hash).store
method adds a new value into the Hash
----------------
h = {}
h.store(:a,5)
h => {:a => 5}
----------------