Skip to content

Instantly share code, notes, and snippets.

@omarqureshi
Created October 23, 2013 15:13
Show Gist options
  • Select an option

  • Save omarqureshi/7120613 to your computer and use it in GitHub Desktop.

Select an option

Save omarqureshi/7120613 to your computer and use it in GitHub Desktop.
➜ ~ irb
1.9.3p448 :001 > herp = 'a'
=> "a"
1.9.3p448 :002 > derp = 'b'
=> "b"
1.9.3p448 :003 > {herp: 'bar', derp: 'baz'}
=> {:herp=>"bar", :derp=>"baz"}
1.9.3p448 :004 > {herp.to_sym => 'bar', derp.to_sym => 'baz'}
=> {:a=>"bar", :b=>"baz"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment