12 lines
207 B
Text
12 lines
207 B
Text
void local fn DoIt
|
|
CFDictionaryRef dict = @{@"A":@"Alpha", @"B":@"Bravo", @"C":@"Charlie", @"D":@"Delta"}
|
|
CFStringRef key
|
|
|
|
for key in dict
|
|
print key, dict[key]
|
|
next
|
|
end fn
|
|
|
|
fn DoIt
|
|
|
|
HandleEvents
|