5 lines
64 B
Text
5 lines
64 B
Text
i = 0
|
|
while i < 2^64
|
|
println format("%o", i)
|
|
i += 1
|
|
end
|