I am learning Lisp (SBCL) and I am confused about how Lisp code is structured. I find Lisp Packages similar to Python modules?
I want to do something like this.
utilities.py:
def foo():
print "And there is silence!"
main.py:
import utilities as u
u.foo()
I looked at packages, downloads and asdf systems. I still don’t understand how it all fits together.
Annan source
share