RosettaCodeData/Task/Read-entire-file/Common-Lisp/read-entire-file.lisp
2023-07-01 13:44:08 -04:00

5 lines
159 B
Common Lisp

(defun file-string (path)
(with-open-file (stream path)
(let ((data (make-string (file-length stream))))
(read-sequence data stream)
data)))