The LISP-end of the computing
LISP never introduced until very late in school and that too in the form of ONE slide (yes true) one slide. So what is it in LISP that deserves so little concern. Looking at MIT OCW lectures it seems to be THE language of choice. So whats lisp infact? LISP (LISt Processing) is a language where the primary data structure is list and modus operandi is list operations. Step 1: Installation Installation of lisp on aptitude based package manager (like Debian/ Ubuntu) can be achieved by the following command. $ sudo apt-get install clisp Alongside this its recommended to install the HTML version of the book Common Lisp the language, 2nd Edition by Guy L. Steele Jr. $ sudo apt-get install cltl The book is installed in the /usr/share/doc/cltl/clm/index.html. Step 2: Testing LISP functionality Soon after installation clisp can be tested for functionality. The following sequence of commands test the lisp environment. To start clisp $ clisp Try out the lisp-...