RosettaCodeData/Task/Hello-world-Text/Objective-C/hello-world-text-2.m
2015-11-18 06:14:39 +00:00

9 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]];
}
}