mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-25 01:35:24 -07:00
Kaj Forney
5d98ea3735
Former-commit-id: e5cc9a092d
Former-commit-id: 57ffa6957f9edc0735ac97c86594b1b27d4dbde9
9 lines
233 B
Objective-C
9 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;
|
|
}
|