(define rdc (lambda (lst) ; REQUIRES: lst is not empty (if (null? (cdr lst)) '() (cons (car lst) (rdc (cdr lst))))))