Loops/Foreach: Difference between revisions

m (→‎{{header|Rust}}: clarification, checked and fixed code)
(→‎{{header|Scilab}}: Section added)
Line 1,592:
(lambda (i) (display i) (newline))
the_list)</lang>
 
=={{header|Scilab}}==
{{works with|Scilab|5.5.1}}
<lang>
for e=["a","b","c"]
printf("%s\n",e)
end
</lang>
{{out}}
<pre style="height:20ex">
a
b
c
</pre>
 
 
=={{header|Seed7}}==
1,392

edits