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

7 lines
88 B
AutoHotkey

i = 1024
While (i > 0)
{
output = %output%`n%i%
i := Floor(i / 2)
}
MsgBox % output