CFDictionaryRef canines canines = @{@"dog":@"Benjamin", @"Dog":@"Samba", @"DOG":@"Bernie"} print "The three dogs are "; canines[@"dog"]; ", "; canines[@"Dog"]; " and "; canines[@"DOG"]; "." HandleEvents