<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -0,0 +1 @@
+This is my directory of all of the projects I work on with Aaron Hillegass' &quot;Cocoa Programming for Mac OS X&quot;
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -3,8 +3,19 @@
 int main (int argc, const char * argv[]) {
     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
-    // insert code here...
-    NSLog(@&quot;Hello, World!&quot;);
-    [pool drain];
+	NSMutableArray *array;
+	array = [[NSMutableArray alloc] init];
+	int i;
+	for (i = 0; i &lt; 10; i++) {
+		NSNumber *newNumber = [[NSNumber alloc] initWithInt:(i * 3)];
+		[array addObject:newNumber];
+	}
+	
+	for (i = 0; i &lt; 10; i++) {
+		NSNumber *numberToPrint = [array objectAtIndex:i];
+		NSLog(@&quot;The number at index %d is %@&quot;, i, numberToPrint);
+	}
+	
+	[pool drain];
     return 0;
 }</diff>
      <filename>lottery/lottery.m</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>717b49666527b975e0fb149eb72b7f43c97551b3</id>
    </parent>
  </parents>
  <author>
    <name>jake</name>
    <email>jake@dropio.com</email>
  </author>
  <url>http://github.com/whoisjake/cocoa_adventures/commit/1fef2cf481b2a937e10cb4bb72a64862b7b11b39</url>
  <id>1fef2cf481b2a937e10cb4bb72a64862b7b11b39</id>
  <committed-date>2008-08-11T13:44:56-07:00</committed-date>
  <authored-date>2008-08-11T13:44:56-07:00</authored-date>
  <message>Finished up the basic lottery example. Moving on</message>
  <tree>255696c4221976e7fc2923f37adb7dbf45ea2bd9</tree>
  <committer>
    <name>jake</name>
    <email>jake@dropio.com</email>
  </committer>
</commit>
