我是 Lisp 新手,有一个非常基本的问题。
我正在处理一个包含列表的列表。
(defvar *stationen* nil)
(defun make-station (name uri)
(list :name name :uri uri))
(defun save-db ()
(with-open-file (out "list.txt"
:direction :output
:if-exists :supersede)
(with-standard-io-syntax
(princ *stationen* out))))
(defun load-db ()
(with-open-file (in "list.txt")
(with-standard-io-syntax
(setf *stationen* (READ in)))))
(load-db)
数据包含一个 uri http://www....
。好吧,当我尝试阅读该列表时,出现以下错误:
The name "HTTP" does not designate any package.
[Condition of type SB-KERNEL:SIMPLE-PACKAGE-ERROR]
我可以猜到为什么会发生这种情况(Lisp 试图将“http”解释为一个包,对吧?)。但是我怎样才能将我的 uri 保存到文件中并再次读取它,而 Lisp 不会抛出这个错误呢?