defstruct with default values
Example
> (defstruct point
(x 0)
(y 0))
POINT
> (setf pt (make-point))
#S(POINT X 0 Y 0)
Previous slide
Next slide
Back to first slide
View graphic version