groups

name language licence
PHP Starter PHP Other
Java Starter Java Other
C Starter C Other
Objective-C Starter Objective-C Other



language: Objective-C
licence: Other

Objective-C Starter

options: view full snippetsend to code collector
#import <Foundation/Foundation.h>

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

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