Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96190
License: OTHER
1
(* Fibonacci function *)
2
3
let rec fib n =
4
if n < 2 then 1 else fib (n - 1) + fib (n - 2)
5
;;
6
7
print_int (fib ( 10 ));
8
print_newline();
9
10