Files
Addlicense/testdata/initial/file.m
2016-06-27 12:03:58 +01:00

10 lines
222 B
Objective-C

#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, World!");
[pool drain];
return 0;
}