Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 18 secondsLecture 4 - slide 3 : 34
Program 1
(define flip
  (lambda (f)
    (lambda (x y)
      (f y x))))


(define (flip f)
  (lambda (x y)
    (f y x)))