6 lines
68 B
Text
6 lines
68 B
Text
go =>
|
|
N = 1024,
|
|
while (N > 0)
|
|
println(N),
|
|
N := N // 2
|
|
end.
|