Ascii decode by youz

(defun r(n)(if(> n 255)(r(floor n 256)))(princ(int-char(mod n 256))))(r(read))

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

download

return to the top page