Skip to content

Instantly share code, notes, and snippets.

@patrickt
Created December 27, 2009 04:58
Show Gist options
  • Save patrickt/264163 to your computer and use it in GitHub Desktop.
Save patrickt/264163 to your computer and use it in GitHub Desktop.
x = {}
x['foo'] = 'bar'
p x['foo'].class # prints String, as it should
x.setObject:'baz', forKey:'foo'
p x['foo'].class # prints Symbol?!
p x.to_s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment