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