8 lines
141 B
Mathematica
8 lines
141 B
Mathematica
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
int main() {
|
||
|
NSDictionary *d1 = @{@"key" : @"value"};
|
||
|
NSLog(@"%@\n", d1); // break here
|
||
|
return 0;
|
||
|
}
|