You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __OBJC__
|
|
# error "Compiler is not an Objective-C compiler."
|
|
#endif
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int main()
|
|
{
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
|
[pool release];
|
|
return 0;
|
|
}
|