5 lines
72 B
Text
5 lines
72 B
Text
local i = 0
|
|
while true do
|
|
print(string.format("%o", i))
|
|
++i
|
|
end
|