Numbering by murky-satyr

function f(n,x)for i=1,n/n*3 do print(x..i)f(n-1,'   '..x..i..'.')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