6 lines
63 B
VimL
6 lines
63 B
VimL
|
|
let i = 1024
|
||
|
|
while i > 0
|
||
|
|
echo i
|
||
|
|
let i = i / 2
|
||
|
|
endwhile
|