{"header":"

Odoc Notebook

","type":"documentation","uses_katex":false,"breadcrumbs":[{"name":"Index","href":"index.html","kind":"leaf-page"},{"name":"notebook","href":"#","kind":"leaf-page"}],"toc":[],"source_anchor":null,"preamble":"

Here's an odoc notebook with some code snippets in it.

# let rec fib x =\u000A    match x with\u000A    | 0 -> 1\u000A    | 1 -> 1\u000A    | n -> fib (n-1) + fib (n-2);;\u000A  val fib : int -> int = <fun>

Here's some more text.

# fib 10;;\u000A  - : int = 89
","content":"","frontmatter":{"other_config":[]}}