Clang modules out of the Mac OS X SDK and use their types/functions. <rdar://problem/18802064> llvm-svn: 233421
13 lines
218 B
Objective-C
13 lines
218 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
int main()
|
|
{
|
|
@autoreleasepool
|
|
{
|
|
NSString *string = @"Hello";
|
|
NSArray *array = @[ @1, @2, @3 ];
|
|
|
|
NSLog(@"Stop here"); // Set breakpoint 0 here.
|
|
}
|
|
}
|