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