RosettaCodeData/Task/Loops-Foreach/FutureBasic/loops-foreach.basic
2023-07-01 13:44:08 -04:00

14 lines
213 B
Text

window 1
void local fn DoIt
CFArrayRef array = @[@"Alpha",@"Bravo",@"Charlie",@"Delta",@"Echo",@"FutureBasic"]
CFStringRef string
for string in array
print string
next
end fn
fn DoIt
HandleEvents