Login
|
Sign Up
AutoLISP Function Detail
Name:
setq
Syntax:
(setq
sym1 expr1 ...
)
Description:
Sets the value of the expressions to the symbol that is right before it.
Example(s):
(setq x 1 y 2 z 3)
3