8 lines
104 B
Objective-C
8 lines
104 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
NSLog(@"Hello, World!\n");
|
|
return 0;
|
|
}
|