Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 356 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 356 Bytes

Lisp Learning

In this repository, I store the code that I write to learn the language Lisp.

Download the compiler and interpreter CLISP.

sudo apt install -y clisp

Open the CLISP command prompt.

clisp

Exit the CLISP command prompt.

(quit)

Execute a Lisp script. The file extension should be .lisp.

clisp [file name]