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