1#include <Foundation/Foundation.h>2 3int main(int argc, char** argv)4{5 printf("About to log\n"); // break here6 NSLog(@"This is a message from NSLog");7 8 return 0;9}10