Compiling and loading a lisp file
- (compile-file "myfile.cl")
- :cf myfile.cl
For the file to affect the lisp session in which it was compiled or any other lisp session, the compiled file has to be loaded into the session in which you want access to the definitions in the file.
- (load "myfile.fasl")
- :ld myfile.fasl