在球拍中访问结构内部的列表

Accessing a list inside struct in Racket

我的结构如下:

(define-struct abc (item-list x y))

我想访问 item-list 的元素,它是一个迭代列表。我如何在球拍中实现这一点?

我试过了:

(abc-item-list a)

但不起作用。

注意:我使用的是中级学生语言。

对我有用:

#lang htdp/isl ;

(define-struct abc (item-list x y))
(define test (make-abc (list 1 2) 4 5))
(abc-item-list test)
; ==> (list 1 2)