RosettaCodeData/Task/Loops-While/AutoHotkey/loops-while.ahk

8 lines
88 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
i = 1024
While (i > 0)
{
output = %output%`n%i%
i := Floor(i / 2)
}
MsgBox % output