- #include "say.h"
- #include <Foundation/Foundation.h>
-
- int main(void)
- {
- id speaker;
- NSString *name = @"GNUstep !";
- NSAutoreleasePool *pool;
- NSArray *outArray;
-
- pool = [NSAutoreleasePool new];
- speaker = [[Say alloc] init];
- outArray = [[NSArray alloc] initWithObjects: @"Msg1", @"Msg2", @"Msg3", @"Msg4", nil];
-
-
- NSLog(@"%@\n", [outArray objectAtIndex: 2]);
-
- [speaker sayHello];
- [speaker sayHelloTo: name];
-
- RELEASE(speaker);
- RELEASE(pool);
-
- #ifdef DEBUG
- NSLog(@"%@\n", @"Debug Now");
- #endif
-
- return 0;
- }