Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
Installing clisp interpreter/compiler
sudo apt-get install clisp
Make sure Lisp Interpreter is installed on your system
which clisp
Output
/usr/bin/clisp
Hello World app
mkdir /opt/lisp_app
cd /opt/lisp_app
mkdir hello.lisp
hello.lisp source code
; hello world lisp program.
; apt-get install clisp
; clisp hello
(print "Hello World")
How to run
clisp /opt/lisp_app/hello
Add Comment
Please, Sign In to add comment