Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 46 secondsLecture 4 - slide 19 : 34
Program 1
(define (zip z lst1 lst2)
  (if (null? lst1)
      '()
      (cons 
        (z (car lst1) (car lst2))
        (zip z (cdr lst1) (cdr lst2)))))