Loops/Downward for: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(+AutoHotkey)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 36:
<lang AutoHotkey>
x := 10
whileWhile (x >= 0)
{
output = %output%`n%x%
x--
}
msgboxMsgBox % output
}</lang>
 
=={{header|AWK}}==
<lang awk>BEGIN {