9 lines
175 B
Objective-C
9 lines
175 B
Objective-C
#include <Foundation/Foundation.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
printf("About to log\n"); // break here
|
|
NSLog(@"This is a message from NSLog");
|
|
|
|
return 0;
|
|
}
|