uudecode by notogawa

main=interact$(>>=g.foldl(#)0.tail).init.tail.lines
a#b=a*64+mod(toInteger$fromEnum b-32)64
g 0=[]
g x=g(div x 256)++[toEnum$fromEnum$mod x 256]

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

download

return to the top page