brintos

brintos / llvm-project-archived public Read only

0
0
Text · 218 B · 99b50f9 Raw
13 lines · plain
1#import <Foundation/Foundation.h>2 3int main()4{5    @autoreleasepool6    {7        NSString *string = @"Hello";8        NSArray *array = @[ @1, @2, @3 ];9 10        NSLog(@"Stop here"); // Set breakpoint 0 here.11    }12}13