0

I've installed SBCL with Quicklisp in my Tumbleweed. Quicklisp has also ASDF inbuilt. After that I also intalled MJRCALC-system in Home/quicklisp/local-projects/mjrcalc-folder. Quicklisp (and ASDF) can recognize the system (in SBCL): (ql:quickload "mjrcalc") To load "mjrcalc": Load 1 ASDF system: mjrcalc ; Loading "mjrcalc"

("mjrcalc")

The problem is that I can't (or don't know how to) load packages from the mjrcalc-system. I also tried to get a list of the packages in the system without result. Any ideas?

Rainer Joswig
  • 136,269
  • 10
  • 221
  • 346

1 Answers1

2

1- look for documentation 2- grep for in-package and/or def.*package

Faré
  • 952
  • 5
  • 4