Hi,
I have a method that returns a list of images. I will say,
(get_images str)
and
(list-ref item num) simply displays num'th element in the list.
From the list, I need to print all of the images recursively.
And I noticed DrScheme is not smart enough to perform more than 1 tasks in one method.
What I tried is like:
(define (print-all(list refnum))
(cond [(< ref (length list)) print (list-ref list refnum) and (print-all(kust refnum+1))]
[else (do nothing)]
))
I can't complete this function! please help!!