home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / Papers / Garrison / Code / SchmoozingExamples / lomein.m < prev    next >
Encoding:
Text File  |  2001-06-23  |  274 b   |  16 lines

  1. #import <Foundation/Foundation.h>
  2. #import "TCPCFSocket.h"
  3.  
  4. int main (int argc, const char * argv[])
  5. {
  6.     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  7.     
  8.     // Your stuff goes here.
  9.     NSLog(@"Hello, World");
  10.     
  11.     [pool release];
  12.     
  13.     exit(0);
  14. }
  15.  
  16.