pentest-distro-builder/filesystem/etc/skel/Templates/prog/ObjC.m

10 lines
222 B
Mathematica
Raw Normal View History

2018-10-17 14:11:16 -06:00
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
2018-10-18 13:47:28 -06:00
NSLog (@"Hello, World!");
2018-10-17 14:11:16 -06:00
[pool drain];
return 0;
}