Skip to content

Instantly share code, notes, and snippets.

@popochess
Created May 9, 2016 15:41
Show Gist options
  • Save popochess/a06f1903fb870c6b1ef5fba47b9147e6 to your computer and use it in GitHub Desktop.
Save popochess/a06f1903fb870c6b1ef5fba47b9147e6 to your computer and use it in GitHub Desktop.
NSMutableArray *list = [NSMutableArray array];
[list addObject:[NSNumber numberWithDouble:7.92]];
[list addObject:@{@"my_key":@"my_value"}];
[list addObject:@"test string"];
@popochess
Copy link
Author

popochess commented May 9, 2016

print:
(
"7.92",
{
"my_key" = "my_value";
},
"test string"
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment