RosettaCodeData/Task/Distributed-programming/Objective-C/distributed-programming-1.m
2023-07-01 13:44:08 -04:00

6 lines
223 B
Objective-C

#import <Foundation/Foundation.h>
// our protocol allows "sending" "strings", but we can implement
// everything we could for a "local" object
@protocol ActionObjectProtocol
- (NSString *)sendMessage: (NSString *)msg;
@end