I have a structure as:
(define-struct abc (item-list x y))
I want to access elements of item-list which is a list iteratively. How do I achieve this in racket?
I tried:
(abc-item-list a)
but doesn't work.
Note: I am using Intermediate Student Language for the same.