groups

name language licence
Blueprint CSS Framework Readme Text Other
Blueprint CSS Framework Tutorial Text Other
XHTML 1.0 Transitional HTML Other
XHTML 1.0 Strict HTML Other
HTML 4.01 Transitional HTML Other
Blueprint CSS Other
HTML 4.01 Strict HTML Other
Objective-C Starter Objective-C Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



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