Loops/Downward for: Difference between revisions

(fix position of bait)
Line 1,580:
 
=={{header|langur}}==
You can use a for in loop to count downward. You cannot use a for of loop for this.
 
<syntaxhighlight lang="langur">for .i in 10..0 {
writeln .i
885

edits