-1
這是我自己寫的:如何使用格式化函數的Common-Lisp讀取文件?
(defun test (x)
(with-open-file (stream x :if-does-not-exist nil)
(let ((read-line-1 (read-line stream))
((read-line-2 (read-line stream)))
(format t "This is the test-1 ~s~%" read-line-1)
(format t "This is the test-2 ~s~%" read-line-2))))
我只是想知道如何讀取一個文件,感謝
你想要什麼:打印(如問題標題中)或閱讀(如在問題中)?目前還不清楚你想要做什麼以及你的實際問題是什麼。 –