Fast and reliable programs with OCaml
Oasis

Static typing, type checking, and low memory usage make this easy-to-learn language a strong candidate for application development.
OCaml is a statically typed programming language with a focus on correctness and speed. First released in 1996 as "Objective Caml," OCaml extended the older Caml language with object-oriented features. OCaml [1] is now mature, stable, and well documented.
It supports both functional and imperative programming styles, making it a good choice for Python, C, or Java programmers interested in writing more reliable software.
Syntax Basics
OCaml's syntax can look a little alien at first. For example, here's a complete OCaml program:
let x = 3 let y = 4 let () = Printf.printf "%d + %d = %d\n" x y (x + y)
The let
declarations are evaluated in order (the compiler infers the types automatically). Expressions that don't return any meaningful value, such as printf
, return the empty tuple ()
, which is called unit
, similar to void
in C or Java.
Assigning the final result to ()
causes the compiler to check that the expression really does return unit
and you're not ignoring something important. Printf.printf
means the printf
function inside the Printf
module. Module names always start with a capital letter in OCaml.
Functions
Functions are also defined with the let
keyword:
let add x y = x + y
Unlike C, Python, and Java, OCaml does not use parentheses around arguments and does not have a return
keyword; it simply evaluates the function's body as a single expression. In OCaml, even an if
… then
construct is an expression and produces a value, as in this factorial definition:
let rec fact n = if n = 1 then 1 else n * fact (n - 1)
When defining a recursive function, such as factorial, you must use the rec
keyword to allow the function to call itself. Without this, the name fact
wouldn't be in scope within the body.
Partial Functions
OCaml functions really only take a single argument. A two-argument function conceptually takes its first argument and returns a new function to handle the second. This process is known as currying. These expressions are equivalent:
add x y (add x) y
For example, add 5
is a function that takes an integer and adds 5 to it:
let add_five = add 5 let six = add_five 1
You'll often see partial application of a curried function to make code more concise. These are equivalent:
let hi x = printf "Hi, %s!\n" x let hi = printf "Hi, %s!\n"
In both cases, hi
is a function with type string -> unit
(it takes a string and returns nothing). Partial application is particularly useful with loops. For example, to print each item in a list, you can do:
List.iter (Printf.printf "- %s\n") ["foo"; "bar"]
The first argument to List.iter
is a function to be invoked on each item in the list. Partial application saves having to define a new function.
Curried functions allow some useful tricks. Consider the pipe operator, which can be defined as:
let (|>) x f = f x
This takes an argument and a function and calls the function with the argument. It works a bit like a pipe in the shell:
["foo"; "bar"] |> List.map String.uppercase |> List.iter (Printf.printf "- %s\n")
List.map
produces a new list by using the given function to transform each item.
This code converts each string to upper case and then prints it. Can you see how it works? Hint: x |> f |> g
is interpreted as (x |> f) |> g
. The pipe operator can make function chains easier to read, and it's also a built-in operator in later versions of OCaml.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
elementary OS 7.1 Now Available for Download
The team behind elementary OS has released the latest version of its operating system with a focus on personalization, inclusivity, accessibility, and privacy.
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.