Loops/Downward for: Difference between revisions

Content added Content deleted
m (→‎{{header|S-BASIC}}: corrected minor typo)
(Add LDPL)
Line 1,583: Line 1,583:
=={{header|Lasso}}==
=={{header|Lasso}}==
<syntaxhighlight lang="lasso">loop(-from=10, -to=0, -by=-1) => {^ loop_count + ' ' ^}</syntaxhighlight>
<syntaxhighlight lang="lasso">loop(-from=10, -to=0, -by=-1) => {^ loop_count + ' ' ^}</syntaxhighlight>

=={{header|LDPL}}==
<syntaxhighlight lang="ldpl">data:
i is number

procedure:
for i from 10 to -1 step -1 do
display i lf
repeat</syntaxhighlight>


=={{header|Lhogho}}==
=={{header|Lhogho}}==