Skip to content

Instantly share code, notes, and snippets.

@stouset
Created March 29, 2017 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stouset/6023875647e39f070d0e2b22d8542b3b to your computer and use it in GitHub Desktop.
Save stouset/6023875647e39f070d0e2b22d8542b3b to your computer and use it in GitHub Desktop.
# 1.8
# NOTHING WAS WRONG WITH THIS, ASSHOLES
{ nil => nil,
:a => :b,
'a' => 'b', }
# 1.9+
{ nil: nil, # lol jk this is actually :nil => nil,
a: :b, # this looks ugly as fuck now,
'a': 'b', } # lol jk this is actually still :a => 'b'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment