Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Annotated program -- Keyboard shortcut: 't'    point-all.scm - 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)))