Numbering by twobit

function f(i,s)for c=1,3*i/i do
print(s..c)f(i-1,"   "..s..c..".")end
end
f(io.read(),"")

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page