groups

name language licence
Make thumbnails for simpleviewer Shell Other
Maximum likelihood, minuit example C++ Other
Merging trees C++ Other
Monospace Shell Other
Objective-C Starter Objective-C Other
Open a file with a specific application Shell Other
PHP Starter PHP Other
Match any character except a new line Shell Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 >



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...)