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")
これら 2 つの Lisp ファイルと同じディレクトリで repl を起動していますが、エラーが発生する理由がわかりません。私は何が欠けていますか?WindowsでECLを使用しています