A small example:
I have here a Windows Workstation and use CCL 64bit, version 1.11., and I use emacs with slime to develop with it.
Lets assume I have the following simple helloworld.lisp:
Code: Select all
(defun main ()
(format t "hello world.~%"))
Inside the repl i do
Code: Select all
> (load "helloworld.lisp")
> (save-application "helloworld.exe" :toplevel-function #'main :prepend-kernel t)
Thats the way I did it all the time, and it works flawless.
How can I do this from a shell script or the command line, so that I don't have to start the repl for this - so to say - make this faster?