(define (mymap f lst) (if (null? lst) '() (cons (f (car lst)) (mymap f (cdr lst)))))