5 lines
80 B
Text
5 lines
80 B
Text
i = 1024
|
|
While i > 0
|
|
TextWindow.WriteLine(i)
|
|
i = Math.Floor(i / 2)
|
|
EndWhile
|