caveman icon indicating copy to clipboard operation
caveman copied to clipboard

Add new package to the project

Open asarch opened this issue 3 years ago • 2 comments

How would you add the package 'foo' stored at the 'bar.lisp' file in order you can safely use it in web.lisp functions?

asarch avatar Mar 22 '21 09:03 asarch

I one way I found was to load the package actually before you load the project:

(load #P"src/mypackage.lisp")

and then:

(ql:quickload :myproject)

asarch avatar Mar 25 '21 16:03 asarch

Seems not specific for Caveman, but for Common Lisp? I don't get well what you mean yet, but it would be solved when you look into ASDF and cl:defpackage.

fukamachi avatar Mar 30 '21 02:03 fukamachi