6 lines
165 B
Common Lisp
6 lines
165 B
Common Lisp
(defvar input (with-temp-buffer
|
|
(insert-file-contents "input.txt")
|
|
(buffer-string)))
|
|
|
|
(with-temp-file "output.txt"
|
|
(insert input))
|