13 lines
219 B
Mathematica
Raw Normal View History

2020-02-01 23:06:01 +01:00
#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;
}