RosettaCodeData/Task/Loops-Downward-for/AutoHotkey/loops-downward-for.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
70 B
AutoHotkey

x := 10
While (x >= 0)
{
output .= "`n" . x
x--
}
MsgBox % output