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

9 lines
169 B
Mathematica
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
#import <Foundation/Foundation.h>
int main() {
@autoreleasepool {
NSString *message = @"Hello, World!\n";
printf("%s", message.UTF8String);
}
}