Code:
// First program example
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, world!");
[pool drain];
return 0;
}
In Xcode, I select Build and Run (command-R) but it just says it debugged in the bottom left corner (Debugging of "prog1" ended normally.)
But, I want it to actually display the Hello World like the tutorial I'm falling says it should. How do I get it to do this?
Thanks in advance.