我正在尝试学习如何使用 Common-Lisp 的 asdf,并且我有以下代码:
(asdf:defsystem example
:serial t
:components ((:file "first")
(:file "second")))
但是,我不断收到错误消息:
Condition of type: SIMPLE-ERROR
Invalid relative pathname #P"first.lisp" for component ("example" "first")
我在与这两个 Lisp 文件相同的目录中启动 repl,但我不明白为什么会出现错误。我错过了什么?我在 Windows 上使用 ECL