Skip to content

Instantly share code, notes, and snippets.

@augustjoki
Created October 22, 2008 07:43
Show Gist options
  • Save augustjoki/18570 to your computer and use it in GitHub Desktop.
Save augustjoki/18570 to your computer and use it in GitHub Desktop.
>> h = {}
=> {}
>> h.class
=> NSMutableDictionary
>> h.setObject 'foo', forKey:42
=> nil
>> h
=> {42=>"foo"}
>> h.description
=> "{\n 42 = foo;\n}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment