7 lines
71 B
Text
7 lines
71 B
Text
fun main() {
|
|
mut i := 1024
|
|
for i > 0 {
|
|
println(i)
|
|
i = i / 2
|
|
}
|
|
}
|