Skip to content

Instantly share code, notes, and snippets.

@jrgifford
Created July 18, 2014 13:38
Show Gist options
  • Save jrgifford/4102518412510ad558c1 to your computer and use it in GitHub Desktop.
Save jrgifford/4102518412510ad558c1 to your computer and use it in GitHub Desktop.
irb(main):001:0> [:thing1 => "thing1", :thing2 => "thing2"]
=> [{:thing1=>"thing1", :thing2=>"thing2"}]
irb(main):002:0> [thing1: "thing1", thing2: "thing2"]
=> [{:thing1=>"thing1", :thing2=>"thing2"}]
irb(main):003:0> [:thing1 => "thing1", thing2: "thing2"]
=> [{:thing1=>"thing1", :thing2=>"thing2"}]
irb(main):004:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment