#include <Foundation/Foundation.h>

int main()
{
    NSAutoreleasePool *p = [NSAutoreleasePool new];
    
    NSDictionary *dict = [NSDictionary dictionaryWithObject:@"T" forKey:@"hasSetID"];
    
    if ([[dict valueForKey:@"hasSetID"] isEqualToString:@"T"]) {
        NSLog(@"Value was T");
    } else {
        NSLog(@"Value was NOT T");
    }
    
    [p drain];
    return 0;
}
