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