RosettaCodeData/Task/Distributed-programming/Objective-C/distributed-programming-3.m
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
216 B
Objective-C

#import <Foundation/Foundation.h>
#import "ActionObject.h"
@implementation ActionObject
-(NSString *)sendMessage: (NSString *)msg
{
NSLog(@"client sending message %@", msg);
return @"server answers ...";
}
@end