main.m 301 B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. #import "foo.h"
  3. int main(int argc, char **argv)
  4. {
  5. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  6. Foo *theFoo = [[Foo alloc] init];
  7. theFoo.age = [NSNumber numberWithInt:argc];
  8. NSLog(@"%d\n",[theFoo.age intValue]);
  9. [pool release];
  10. return 0;
  11. }