Very strange: I am trying to run a simple Hello World program, but Xcode say "Build Failed"
I saw in the Log Navigator it say 2 warning and 1 error:
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1
Code:
#import <Foundation/Foundation.h>
int main (int argc, const char *argv[])
{
NSLog (@"Hello, Objective-C!");
return (0);
}