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… Read More
Tag Archives: LISP-Control-Structures
DoList in Common LISP is a looping statement used to iterate the elements in a list. Syntax: (dolist input_list) statements... ) Here, The input_list contains… Read More
Common LISP supports 3 types of logical operators on Boolean Values. The arguments of these operators are evaluated conditionally, therefore they are also part of… Read More
A hash table is a type of collection in Common LISP, that is used to map keys to values. Any non-null object can be used… Read More