4 lines
77 B
Lua
4 lines
77 B
Lua
|
|
for i = 1, 33 do
|
||
|
|
print( string.format( "%o \t %d \t %x", i, i, i ) )
|
||
|
|
end
|