Login
|
Sign Up
AutoLISP Function Detail
Name:
cond
Syntax:
(cond (
expr result
) ...)
Description:
Tests an expression and if it is true it will execute the result.
Example(s):
(cond ((= int 1) 2))
nil