7 lines
70 B
AutoHotkey
7 lines
70 B
AutoHotkey
x := 10
|
|
While (x >= 0)
|
|
{
|
|
output .= "`n" . x
|
|
x--
|
|
}
|
|
MsgBox % output
|