RosettaCodeData/Task/Case-sensitivity-of-identifiers/FutureBasic/case-sensitivity-of-identifiers.basic
2023-07-01 13:44:08 -04:00

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