Login | Sign Up
 





 
AutoLISP Function Detail
Name: progn

Syntax:
(progn expr1 ...)

Description:
Allows you to create one expression out of several expressions. This helps to create complex logic when working with the IF function since it only expects true and false expressions.

Example(s):
(if (> x 10)
  (progn
    (prompt "\nGreater than 10")
    (setq x 10)
  )
)