It'd be an interesting thing to make FileReader conform to `<NSFastEnumeration>`, so you could do: ``` FileReader *r = [[FileReader alloc] initWithFilePath:pathToFile]; for (NSString *line in r) { NSLog(@"line: %@", line); } [r release]; ```