home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2001
/
MacHack 2001.toast
/
pc
/
Papers
/
Garrison
/
Code
/
SchmoozingExamples
/
lomein.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-23
|
274 b
|
16 lines
#import <Foundation/Foundation.h>
#import "TCPCFSocket.h"
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// Your stuff goes here.
NSLog(@"Hello, World");
[pool release];
exit(0);
}