Код Ревью
Сравни свои решения
#| BEGIN (Введите свое решение) |#
(define (my-for-each f items)
(if (null? items)
items
(begin
(f (car items))
(my-for-each f (cdr items)))))
#| BEGIN (Введите свое решение) |#
(define (my-for-each f items)
(if (null? items)
items
(begin
(f (car items))
(my-for-each f (cdr items)))))