This repo will guide you through basic concepts of LISP Programming Language.
References taken from Tutorials Point and LISP in 100 seconds - Fireship
https://sourceforge.net/projects/clisp/files/clisp/2.49/
; Demo Code
(write-line "Hello World!")
Step 5: Open the integrated terminal ( Ctrl + ` ) and start your Lisp interpreter by typing the path to clisp.exe For example:
C:\LISP\clisp-2.49\clisp.exe
(load "demo.lisp")
Output: Hello World!