Back to notes -- Keyboard shortcut: 'u'              Slide program -- Keyboard shortcut: 't'    The fib function.Slide 4 : 4
Program 1
(define (fib n)
  (cond ((or (= n 0) (= n 1)) 1)
        (else (+ (fib (- n 1)) (fib (- n 2))))))