LISP – Loop For Construct

  • Post author:
  • Post category:LISP
  • Post comments:1 Comment
LISP - Loop For Construct

This topic is about LISP – Loop For Construct.

The loop for construct allows you to implement a for-loop like iteration as most common in other languages.

It allows you to

  • set up variables for iteration
  • specify expression(s) that will conditionally terminate the iteration
  • specify expression(s) for performing some job on each iteration
  • specify expression(s), and expressions for doing some job before exiting the loop

The for loop for construct follows several syntax โˆ’

(loop for loop-variable in <a list>
   do (action)
)

(loop for loop-variable from value1 to value2
   do (action)
)

Example 1

Create a new source code file named main.lisp and type the following code in it โˆ’

(loop for x in '(tom dick harry)
   do (format t " ~s" x)
)

When you click the Execute button, or type Ctrl+E, LISP executes it immediately and the result returned is โˆ’

TOM DICK HARRY

Example 2

Create a new source code file named main.lisp and type the following code in it โˆ’

(loop for a from 10 to 20
   do (print a)
)

When you click the Execute button, or type Ctrl+E, LISP executes it immediately and the result returned is โˆ’

10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 

Example 3

Create a new source code file named main.lisp and type the following code in it โˆ’

(loop for x from 1 to 20
   if(evenp x)
   do (print x)
)

When you click the Execute button, or type Ctrl+E, LISP executes it immediately and the result returned is โˆ’

2 
4 
6 
8 
10 
12 
14 
16 
18 
20

In this topic we learned about LISP – Loop For Construct. To learn more, Click Here.

This Post Has One Comment

Leave a Reply