blob: 08675eb3c4587c5a5ae68b4ee6a1de2f1199ea43 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | #import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    // insert code here...
    NSLog(@"Hello, World!");
    [pool release];
    return 0;
}
 |