Hacker News new | ask | show | jobs
by galdor 1208 days ago
What do you mean by "open [...] in a new REPL"?

You use ASDF:LOAD-SYSTEM to have ASDF load all the content of the system, making it available to you.

1 comments

I edited the comment to add some additional details.

Am I not supposed to load or compile the contents of an `.asd` file?

No you do not have to. ASDF knows where to find your ASD files:

https://asdf.common-lisp.dev/asdf.html#Configuring-ASDF-to-f...

Personally I use the (:tree (:home "dev/lisp")) form.

Just don't put a node_modules/ in there!
Thanks a lot for this actually. I just gave it a shot and it seems to have been the piece I've been missing.
You can load the contents of a .asd file (this can be useful when developing on versions other than what you want in your ASDF search path). It is unnecessary outside of that use case though.