Ascii decode by kozima

(defun f(n)(when(> n 0)(f(ash n -8))(princ(int-char(rem n 256)))))(f(read))

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

download

return to the top page