Open In App

How to Install LISP on Windows?

Last Updated : 10 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Lisp is a high-level machine-independent programming language that is used in making AI-based programs as it supports the implementation of such software that deals with computation with symbols efficiently. It is the second-oldest high-level programming language.

In this article, we will learn about installing and beginning writing programs in Lisp.

Steps for installation on Windows:

Step 1: Download LISP.

 

Step 2: After downloading the compressed zip file on your windows machine now extract it.

Click on the Extract button

Step 3: Now open the extracted folder.

Open the clisp.exe program to run lisp commands

Step 4: Open clisp.exe to run clisp commands.

 

Step 5:  Print “Hello World”

Example: 

Lisp




; LISP program for print.
(write-line "Hello, World!")


Time Complexity: O(1)

Auxiliary Space: O(1)

Output:

Hello World is printed


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads