Loops/Downward for: Difference between revisions

Content added Content deleted
(add bait)
(fix position of bait)
Line 576: Line 576:
}
}
}</syntaxhighlight>
}</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}}==
=={{header|Bait}}==
Line 585: Line 591:
}
}
</syntaxhighlight>
</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}}==
=={{header|BASIC}}==