int main () {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog(@"Hello, world!");
NSLog(@"Today, %@, is the first day of our lives! As is everyday.", [NSCalendarDate calendarDate]);
NSLog(@"Welcome to Poetry in Code, an attempt at creating poems");
NSLog(@"in executable code. This example is in Objective-C.");
NSLog(@"Be as simple, complex or abstract as you like. They can be");
NSLog(@"packed with print statements, flowing with loops and logic, or");
NSLog(@"rife with recursion. It's all for fun anyway!");
NSLog(@"Send us your submissions, write them in any language you");
NSLog(@"want, and tag them 'poetry in code' so we can look out for them.");
NSLog(@"Enjoy reading and writing poetry in code, and don't forget the");
NSLog(@"semi-colons!");
[pool release];
return 0;
}
Included in zines: Poetry in Code #1

