RosettaCodeData/Task/File-input-output/Emacs-Lisp/file-input-output.el

7 lines
165 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defvar input (with-temp-buffer
(insert-file-contents "input.txt")
(buffer-string)))
(with-temp-file "output.txt"
(insert input))