int main(int argc, const char * argv[]) { @autoreleasepool {
NSMutableArray *myMute;
NSString *stringOne = @"This is string 1";
NSString *stringTwo = @"This is string 2";
NSString *stringThree = @"This is string 3";
[myMute addObject: stringOne];
[myMute addObject: stringTwo];
[myMute addObject: stringThree];
NSLog(@"There are %li objects in the myMute array", [myMute count]);
return 0;
}
}