RosettaCodeData/Task/Loops-Foreach/FutureBasic/loops-foreach.basic

15 lines
213 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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