| 1 | #include <stdio.h> |
|---|---|
| 2 | #include <stdint.h> |
| 3 | #import <Foundation/Foundation.h> |
| 4 | #import "Foo.h" |
| 5 | |
| 6 | int main (int argc, char const *argv[]) |
| 7 | { |
| 8 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
| 9 | Foo *foo = [[Foo alloc] init]; |
| 10 | NSLog (@"foo is %@", foo); // Set breakpoint in main |
| 11 | [pool release]; |
| 12 | return 0; |
| 13 | } |
| 14 |
