rot13 by m.ukai

let p s=()=print_char(Obj.magic s);;while 1=1do
let c=input_byte stdin in(c>64&c<78||c>96&c<110)&p(c+13)||(c>77&c<91||c>109&c<123)&p(c-13)||p c
done

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

download

return to the top page