mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-28 19:25:25 -07:00
10 lines
233 B
Mathematica
10 lines
233 B
Mathematica
|
#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;
|
||
|
}
|