1 | #import <Foundation/Foundation.h> |
---|---|
2 | |
3 | int main() |
4 | { |
5 | @autoreleasepool |
6 | { |
7 | NSString *string = @"Hello"; |
8 | NSArray *array = @[ @1, @2, @3 ]; |
9 | |
10 | NSLog(@"Stop here"); // Set breakpoint 0 here. |
11 | } |
12 | } |
13 |
1 | #import <Foundation/Foundation.h> |
---|---|
2 | |
3 | int main() |
4 | { |
5 | @autoreleasepool |
6 | { |
7 | NSString *string = @"Hello"; |
8 | NSArray *array = @[ @1, @2, @3 ]; |
9 | |
10 | NSLog(@"Stop here"); // Set breakpoint 0 here. |
11 | } |
12 | } |
13 |