Given:
(define (make-woofus a b)
   (lambda (msg)
      (cond ((eq? msg 0) a)
            ((eq? msg 1) b)
            (else (error 'Eh?)))))
What fish is bound to after the below line of code is run:
(define fish (make-woofus 'head 'soup))