8 lines
169 B
Objective-C
8 lines
169 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
int main() {
|
|
@autoreleasepool {
|
|
NSString *message = @"Hello, World!\n";
|
|
printf("%s", message.UTF8String);
|
|
}
|
|
}
|