Skip to content

Instantly share code, notes, and snippets.

@mark
Created October 17, 2012 17:32
Show Gist options
  • Save mark/3906904 to your computer and use it in GitHub Desktop.
Save mark/3906904 to your computer and use it in GitHub Desktop.
Hash fun
1.9.2p318 :001 > h = { :foo => :bar, :baz => :quux }
=> {:foo=>:bar, :baz=>:quux}
1.9.2p318 :003 > h::foo
=> :bar
1.9.2p318 :004 > h::baz
=> :quux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment