Order of growth in computing Fibonacci numbers this way:
(define (fib n) (cond ((< n 2) 1) (else (+ (fib (- n 1)) (fib (- n 2))))))