this repo has no description
1{0 Odoc Notebook}
2
3Here's an odoc notebook with some code snippets in it.
4
5{@ocamltop[
6# let rec fib x =
7 match x with
8 | 0 -> 1
9 | 1 -> 1
10 | n -> fib (n-1) + fib (n-2);;
11 val fib : int -> int = <fun>
12]}
13
14Here's some more text.
15
16{@ocamltop[
17# fib 10;;
18 - : int = 89
19]}
20