9 lines
116 B
Mathematica
9 lines
116 B
Mathematica
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
int main() {
|
||
|
@autoreleasepool {
|
||
|
NSLog(@"Hello, World!");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|