Loops/Foreach: Difference between revisions

Added EasyLang implementation
(added map/dictionary and range iteration)
(Added EasyLang implementation)
Line 1,063:
}</syntaxhighlight>
In E, the for ... in ... loop is also used for iterating over numeric ranges; see [[Loop/For#E]].
 
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
for i in [ 5 1 19 25 12 1 14 7 ]
print i
.
</syntaxhighlight>
 
=={{header|EchoLisp}}==
175

edits