# Pastebin jCayKai9 let fib2 n = let rec fibi a b c = if c > n then a else fibi b (a+b) (c+1) in fibi 1 1 0 ;;