mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-03 13:21:00 +00:00
15 lines
265 B
Mathematica
15 lines
265 B
Mathematica
|
#import <Foundation/NSAutoreleasePool.h>
|
||
|
#import <Foundation/NSObject.h>
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||
|
NSObject *anObject = [NSObject new];
|
||
|
|
||
|
[anObject release];
|
||
|
[anObject release];
|
||
|
[pool release];
|
||
|
return 0;
|
||
|
}
|