RosettaCodeData/Task/Read-entire-file/Common-Lisp/read-entire-file.lisp
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07: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)))