Stars and Bars by mitchs (luck)

def f(n,s=''):n<9or f(n-9,s+'*');n%9and f(n-1,s+'|');n or print(s)
f(29+id('')%5*7)

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

download

return to the top page