RosettaCodeData/Task/Hello-world-Text/Objective-C/hello-world-text-2.m

10 lines
296 B
Objective-C

#import <Foundation/Foundation.h>
int main() {
@autoreleasepool {
NSFileHandle *standardOutput = [NSFileHandle fileHandleWithStandardOutput];
NSString *message = @"Hello, World!\n";
[standardOutput writeData:[message dataUsingEncoding:NSUTF8StringEncoding]];
}
}