7 lines
88 B
V
7 lines
88 B
V
fn main() {
|
|
mut i := 1024
|
|
for i > 0 {
|
|
println(i)
|
|
i /= 2
|
|
}
|
|
}
|