OCaml is an industrial strength programming language supporting functional, imperative and object-oriented styles

News RSSRSS

More...

A taste of OCaml

(* Binary tree with leaves car­rying an integer. *)
type tree = Leaf of int | Node of tree * tree

let rec exists_leaf test tree =
  match tree with
  | Leaf v -> test v
  | Node (left, right) ->
      exists_leaf test left
      || exists_leaf test right

let has_even_leaf tree =
  exists_leaf (fun n -> n mod 2 = 0) tree

OCaml is a lot more powerful than this simple example shows. See more examples!

Packages

Package Version Date
yara0.1Apr 30, 2018
x5090.6.1Apr 30, 2018
tls0.9.1Apr 30, 2018
rfsm1.0Apr 30, 2018
ppx_deriving_crowbar0.1.1Apr 30, 2018
otr0.3.4Apr 30, 2018