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