bagaimana Anda menjalankan file lisp dengan sbcl

;Download sbcl from here: http://www.sbcl.org/platform-table.html
; Semicolons are comments in lisp :)
; make a file with vim like so: "vim test.lisp" or whatever text editor
; "run" the file like so in command line or terminal:
"sbcl --script test.lisp" 
Precious Panda