I am new to common lisp and want to build a web with RESTAS. I write a file called api.lisp, it looks like this:
(ql:quickload :restas)
(restas:define-module xxx ) ......
I write some routes, and it works well in Emacs+Slime. But when i try to load the file in command line, it doesn't work .
Bash>> lx86cl64 -l ~/Git/proj53/src/api/api.lisp
To load "restas":
Load 1 ASDF system:
restas
; Loading "restas"
.
> Error: There is no package named "SWANK" .
> While executing: CCL::%FASL-NVPACKAGE, in process listener(1).
> Type :GO to continue, :POP to abort, :R for a list of available restarts.
> If continued: Retry finding package with name "SWANK".
> Type :? for other options.
1 >
Why i got this error?