RosettaCodeData/Task/Rot-13/Emacs-Lisp/rot-13-1.el
2026-04-30 12:34:36 -04:00

5 lines
136 B
EmacsLisp

(rot13-string "abc") ;=> "nop"
(with-temp-buffer
(insert "abc")
(rot13-region (point-min) (point-max))
(buffer-string)) ;=> "nop"