Write a
define-struct
, using
Syntax Rule 5
. The result will look like
(define-struct circle (center radius color))
. Note that the types of the parts aren't specified in the
define-struct
, but you still need to decide on them.