Loops/Downward for: Difference between revisions

Content deleted Content added
Jjuanhdez (talk | contribs)
Loops/Downward for in Run BASIC
Jjuanhdez (talk | contribs)
Loops/Downward for in Asymptote
Line 448:
1
0</pre>
 
=={{header|Asymptote}}==
Asymptote's control structures are similar to those in C, C++, or Java
<lang Asymptote>for(int i = 10; i >=0; --i) {
write(i);
}</lang>
 
=={{header|AutoHotkey}}==