Loops/Downward for: Difference between revisions

Content added Content deleted
(+AutoHotkey)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 36: Line 36:
<lang AutoHotkey>
<lang AutoHotkey>
x := 10
x := 10
while (x >= 0)
While (x >= 0)
{
{
output = %output%`n%x%
output = %output%`n%x%
x--
x--
}
}
msgbox % output
MsgBox % output
}</lang>
}</lang>

=={{header|AWK}}==
=={{header|AWK}}==
<lang awk>BEGIN {
<lang awk>BEGIN {