Numbering by murky-satyr

def f(n:Int,x:String){if(n>0)for(i<-"123")println(x+i)==f(n-1,"   "+x+i+".")}
f(readInt,"")

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

download

return to the top page