defstruct with type and name
Example
> (defstruct (point (:type list) (:named t))
(x 0)
(y 0))
POINT
> (setf pt (make-point :x 10 :y 20))
(POINT 10 20)
Previous slide
Next slide
Back to first slide
View graphic version