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