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

8 lines
88 B
AutoHotkey
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
i = 1024
While (i > 0)
{
output = %output%`n%i%
i := Floor(i / 2)
}
MsgBox % output