#import <Foundation/Foundation.h>
int main (int argc, const char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *string = @"Objective-C Java C++ Python";
if ([string rangeOfString:@"C++"].location == 0) {
NSLog(@"no");
} else {
NSLog(@"yes");
}
[pool drain];
return 0;
}
/*
run:
yes
*/