Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc-example-files
Path: blob/master/ocaml/example1.ml
Views: 980
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