Reputation: 95
I am trying to program a tcp server using Common Lisp (sbcl) on Windows-11. My main goal is to create a stand alone executable tcp server.
So, I am using the usocket
library (loading it with (ql:quickload "usocket")
) to create the server socket. It performing without any issues when I am writing the codes inside of the REPL, but when I am using it in source code, named Server.lisp
and try to run using the sbcl --script Server.lisp
it shows this error:
Unhandled SB-C::INPUT-ERROR-IN-LOAD in thread
#<SB-THREAD:THREAD "main thread" RUNNING {10010A8003}>:
READ error during LOAD:
Package QL does not exist.
Line: 1, Column: 12, File-Position: 12
Upvotes: 0
Views: 130