pentest-distro-builder/filesystem/root/Templates/prog/ObjC.m
Kaj Forney 07fcaebe97 Parrot preseed changes
Former-commit-id: 07271c848c5ee6372f461d7303a49c785d5db8fb
Former-commit-id: f42f1393ead3eb4f41d8b8ad7a019efddfa3ce62
2018-10-17 15:35:13 -06:00

10 lines
233 B
Objective-C

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