Skip to main content

progn

progn Special Operator

Syntax:

progn {form}* ! {result}*

Arguments and Values:

forms—an implicit progn.

results—the values of the forms.

Description:

progn evaluates forms, in the order in which they are given.

The values of each form but the last are discarded.

If progn appears as a top level form, then all forms within that progn are considered by the compiler to be top level forms.

Examples:

(progn) *!* NIL 
(progn 1 2 3) *!* 3
(progn (values 1 2 3)) *!* 1, 2, 3
(setf a 1) *!* 1
(if a
(progn (setf a nil) ’here)
(progn (setf a t) ’there)) *!* HERE
a *!* NIL

See Also:

prog1, prog2, Section 3.1 (Evaluation)

Notes:

Many places in Common Lisp involve syntax that uses implicit progns. That is, part of their syntax allows many forms to be written that are to be evaluated sequentially, discarding the results of all forms but the last and returning the results of the last form. Such places include, but are not limited to, the following: the body of a lambda expression; the bodies of various control and conditional forms (e.g., case, catch, progn, and when).

info

The example above was modified replacing SETQ with DEFPARAMETER or SETF according to context. That is because the specification changed yet they did not update the example to fit the specification. This was a mistake in the original ANSI Reference and has been fixed here.

Expanded Reference: progn

tip

TODO: Please contribute to this page by adding explanations and examples

(progn )