Skip to content

tirthraj07/Lisp-Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo will guide you through basic concepts of LISP Programming Language.
References taken from Tutorials Point and LISP in 100 seconds - Fireship

Download Clisp

Step 1: Download the clisp-2.49-win32-mingw-big.zip from the following link

https://sourceforge.net/projects/clisp/files/clisp/2.49/

Step 2: Unzip the folder and copy the path of clisp.exe

Step 3: Open VS Code and download the Common Lisp extension

Step 4: Create a new file "demo.lisp" and copy the following code and save

; 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

Step 6: Once the interpreter is running, you can load and execute your Lisp file

(load "demo.lisp")

Output: Hello World!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published