Tower of Hanoi by murky-satyr

T='\n'
(h={n,f,t,v->n--&&[h(n,f,v,t),print(f),T+=t,h(n,v,t,f)]})System.in.read()%8,'A','C','B'
print T

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

download

return to the top page