Reputation: 822
I am new to LISP, currently using LispWorks and ListBox IDE on window server 2008. I want to know that, how can we compile and run LISP project, contain 350 LISP source file. and what will be generate after compilation and how can i run it...? and what's techniques are available to debug lisp project. (it is old technology, so I cannot get much help from internet)
Upvotes: 1
Views: 1810
Reputation: 139311
LispWorks comes with a lot of documentation. This documentation is also available on their website.
LispWorks can:
Their Delivery User Guide describes how to generate applications. The documentation of DEFSYSTEM describes how to organize source code and how to compile systems.
Upvotes: 7