(define rac (lambda (lst) ; REQUIRES lst is not empty (if (null? (cdr lst)) (car list) (rac (cdr lst)))))