RosettaCodeData/Task/Count-in-octal/Nanoquery/count-in-octal.nanoquery
2023-07-01 13:44:08 -04:00

5 lines
64 B
Text

i = 0
while i < 2^64
println format("%o", i)
i += 1
end