next up previous

12.6.5 Progn

The progn function evaluates all of its arguments and returns the value of the last argument.

Syntax

(progn <expression>*)

Example

CLIPS> (progn (setgen 5) (gensym))
gen5
CLIPS>


next up previous