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