Clamps Dictionary
defvar*
Macro
(defvar* &rest pairs)
Form for the definition of multiple variable. Pairs are one or more elements, being the arguments of a single defparameter form.
Arguments
pairs |
one or more elements, either a Symbol or a list of 1-3 elements with a Symbol as first and a String as third element. |
Examples
(defvar* *a* (*b*) (*c* 1) (*d* 1 "variable d")) ;; The above form is the same as: (progn (defvar *a* nil) (defvar *b* nil) (defvar *c* 1) (defvar *d* "variable d"))
See also
Created: 2025-02-18 Di 12:58