Loops/Foreach: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 1,336:
println[n]
</syntaxhighlight>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
window 1
 
void local fn DoIt
'~'1
CFArrayRef array = @[@"Alpha",@"Bravo",@"Charlie",@"Delta",@"Echo",@"FutureBasic"]
CFStringRef string
 
for string in array
print string
next
end fn
 
fn DoIt
 
HandleEvents
</syntaxhighlight>
{{out}}
<pre>
Alpha
Bravo
Charlie
Delta
Echo
FutureBasic
</pre>
 
=={{header|GAP}}==
416

edits