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