Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Java
10.8K+ articles
Mathematical
7.8K+ articles
C++
4.3K+ articles
Competitive Programming
3.3K+ articles
C++ Programs
2.4K+ articles
Algorithms
2.0K+ articles
C Language
1.8K+ articles
Programming Language
/
LISP
LISP
65 posts
Recent Articles
Popular Articles
Predicates in LISP
Last Updated: 26 November 2021
In this article, we will discuss predicates. Predicates are similar to functions that will be used to test their arguments for conditions. They will return NIL if the cond...
read more
Picked
LISP
LISP-Predicates
Introduction to LISP
Last Updated: 17 March 2022
Lisp is a programming language that has an overall style that is organized around expressions and functions. Every Lisp procedure is a function, and when called, it return...
read more
Picked
LISP
LISP-Basics
Vectors in LISP
Last Updated: 26 November 2021
In this article, we will discuss Vectors in LISP. Vectors in LISP are one-dimensional arrays which are also known as sequences. We can create a vector using vector functio...
read more
Picked
LISP
LISP-Basics
List Manipulation in LISP
Last Updated: 22 November 2021
In this article, we will discuss List manipulation in LISP. The list is a data structure that can store elements of multiple data typewe can create a list by using the lis...
read more
Picked
LISP
LISP-Functions
Loop Construct in LISP
Last Updated: 22 November 2021
In this article, we will discuss Loop Construct. This Construct is used to iterate the data until it finds the return statement. And then it will stop iterating and return...
read more
Picked
LISP
LISP-Functions
Decision Making in LISP
Last Updated: 24 December 2021
Decision making is used to specify the condition to evaluate an expression in LISP.There are 4 types of decision-making statements in LISP. They areifcondwhencaseif Statem...
read more
Picked
LISP
LISP-Basics
Case Construct in LISP
Last Updated: 24 December 2021
In this article, we will discuss the case construct in LISP. This is used to check multiple test conditions at a time, unlike cond, if and when it allows multiple conditio...
read more
Picked
LISP
LISP-Functions
Mapping Functions in LISP
Last Updated: 09 February 2022
In this article, we will discuss mapping functions in lisp. Mapping functions are applied on the list data structure for combining one or more lists of elements. By using ...
read more
Picked
LISP
LISP-Basics
LISP-DataTypes
Cond Construct in LISP
Last Updated: 09 November 2021
In this article, we will discuss cond construct in LISP. The cond is a decision-making statement used to make n number of test conditions. It will check all the conditions...
read more
Picked
LISP
LISP-Basics
When Construct in LISP
Last Updated: 09 November 2021
In this article, we will discuss the when construct. The when is a decision-making statement used to specify the decisions. It is similar to conditional statements.Syntax:...
read more
Picked
LISP
LISP-Basics
LISP-Conditionals
If Construct in LISP
Last Updated: 09 November 2021
In this article, we will discuss the if construct in LISP. The if is a decision-making statement used to check whether the condition is right or wrong. The if the conditio...
read more
Picked
LISP
LISP-Basics
Lambda Functions in LISP
Last Updated: 09 November 2021
In this article, we will discuss lambda functions in LISP. The Lambda function is used to evaluate a mathematical expression in our program. They are also known as anonymo...
read more
Picked
LISP
LISP-Basics
Do Construct in LISP
Last Updated: 09 November 2021
In this article, we will discuss the Do Construct in LISP. Do construct is used to perform an iteration in a structured format.Syntax:(do ((variable1 value1 new updat...
read more
Picked
LISP
LISP-Control-Structures
Returning Values Functions in LISP
Last Updated: 29 October 2021
In the previous article on the LISP function, we have seen the syntax of defining a function and calling the function by passing some arguments.Returning values from a fun...
read more
Picked
LISP
LISP-Functions
Operators in LISP
Last Updated: 29 October 2021
Operators are the foundation of any programming language. Thus the functionality of the LISP programming language is incomplete without the use of operators. We can define...
read more
Operators
Picked
LISP
LISP-Basics
1
2
3
4
5
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !