groups

Link to this snippet:


Download to Code Collector

language: Objective-C
licence: Other

Objective-C Starter

options: send to code collectorview all bassglider's snippets
#import <Foundation/Foundation.h>

int main (int argc, const char * argv[]) {
	NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

	NSLog(@"Hello World");
	[pool release];
	return 0;
}