Loops/Downward for: Difference between revisions

Content deleted Content added
Lynx71 (talk | contribs)
add bait
Lynx71 (talk | contribs)
fix position of bait
Line 576:
}
}</syntaxhighlight>
 
=={{header|Axe}}==
Axe does not support for loops with step sizes other than 1.
<syntaxhighlight lang="axe">For(I,0,10)
Disp 10-I▶Dec,i
End</syntaxhighlight>
 
=={{header|Bait}}==
Line 585 ⟶ 591:
}
</syntaxhighlight>
 
=={{header|Axe}}==
Axe does not support for loops with step sizes other than 1.
<syntaxhighlight lang="axe">For(I,0,10)
Disp 10-I▶Dec,i
End</syntaxhighlight>
 
=={{header|BASIC}}==