How to compile my lisp code in a project with many lisp files?
ID
Created
Type
mocl Version
Dev OS
Target
Status
#48
by dmsurti on 2014-07-08 (2470 days ago)
question
14.05
Mac OS X
iOS
closed
Comments
I mean what is <file> when lisp code is spread across multiple files?
- dmsurti, 2470 days ago
Ok, I read through the manual. So If I just put a (require :sudoku) in my app.lisp while my sudoku project lives under ~/quicklisp/local-projects and ~/mocl/systems having a symlink to sudoku.asd should work. Is that correct?
- dmsurti, 2470 days ago
Yes, that is the idea. mocl will import ASDs using require. For simple things you could also use load, e.g. (load "foo.lisp") to pull in other files.