1#import <Foundation/Foundation.h>2 3int main() {4 NSDictionary *d1 = @{@"key" : @"value"};5 NSLog(@"%@\n", d1); // break here6 return 0;7}8