(def rot13 (s) (with (a (coerce #\a 'int)) (map [coerce (+ a (mod (- (coerce _ 'int) a 13) 26)) 'char] s)))