Jump to content

Loops/While: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(+AutoHotkey)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 50:
<lang AutoHotkey>
i = 1024
whileWhile (i > 0)
{
output = %output%`n%i%
i := floorFloor(i / 2)
}
msgboxMsgBox % output
</lang>
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.