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

9 lines
169 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#import <Foundation/Foundation.h>
int main() {
@autoreleasepool {
NSString *message = @"Hello, World!\n";
printf("%s", message.UTF8String);
}
}