I download lispbox for lisp IDE on Mac OS. I can run lisp command in lispbox at interactive mode. My question is how can I run .lisp code by using it? Thank you.
2 Answers
Also, you can run files via command line using Emacs Lisp or Clozure CL, included in LispBox.
I'm using LispBox 0.7 on Windows 7, 64 bits. The commands are:
emacs-23.2\bin\emacs.exe --script hello.lisp
or
ccl-1.6-windowsx86\wx86cl64.exe --load hello.lisp
The second command needs (quit) at the end of the program, though.