#| File is: helloworld.lisp --- Clark Elliott version 1.0 2010-01-07 Run this in Armed Bear Common LISP that runs under java: > java -jar abcl-0.15.0.jar ------------------------------------------------------------------ To load the program into LISP: CL-USER(10): (load "helloworld.lisp") ------------------------------------------------------------------ To run the program: CL-USER(11): (hello) ------------------------------------------------------------|# ;;; Here is the whole program: (defun hello () (print "Hello out there."))