Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    The send method which is used in the Point class.Lecture 3 - slide 3 : 43
Program 2
(define (send message obj . par)
  (let ((method (obj message)))
    (apply method par)))