13 lines
301 B
Mathematica
Raw Normal View History

2020-02-01 23:06:01 +01:00
#import <Foundation/Foundation.h>
#import "foo.h"
int main(int argc, char **argv)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Foo *theFoo = [[Foo alloc] init];
theFoo.age = [NSNumber numberWithInt:argc];
NSLog(@"%d\n",[theFoo.age intValue]);
[pool release];
return 0;
}