(function fib n
  (if (< n 2)
    n
    (+ (fib (- n 1))
       (fib (- n 2)))))

(for i (range 10)
  (print (fib i)))
