Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Select Page

Introduction to the Objective Caml Programming Language

Introduction to the Objective Caml Programming Language

This document is an introduction to ML programming, specifically for the Objective Caml (OCaml) programming language from INRIA. OCaml is a dialect of the ML (Meta-Language) family of languages, which derive from the Classic ML language designed by Robin Milner in 1975 for the LCF (Logic of Computable Functions) theorem prover.

OCaml shares many features with other dialects of ML, and it provides several new features of its own. Throughout this document, we use the term ML to stand for any of the dialects of ML, and OCaml when a feature is specific to OCaml.

ML is a functional language, meaning that functions are treated as first-class values. Functions may be nested, functions may be passed as arguments to other functions, and functions can be stored in data structures. Functions are treated like their mathematical counterparts as much as possible. Assignment statements that permanently change the value of certain expressions are permitted, but used much less frequently than in languages like C or Java.

  • ML is strongly typed, meaning that the type of every variable and every expression in a program is determined at compile-time.
  • ML uses type inference to infer types for the expressions in a program.
  • The ML type system is polymorphic, meaning that it is possible to write programs that work for values of any type.
  • ML implements a pattern matching mechanism that unifies case analysis and data destructors.
  • ML includes an expressive module system that allows data structures to be specified and defined abstractly.
  • OCaml is also the only widely-available ML implementation to include an object system.
  • OCaml includes a compiler that supports separate compilation.
  • All the languages in the ML family have a formal semantics.

Introduction to the Objective Caml Programming Language

by Jason Hickey (PDF) – 109 pages

Introduction to the Objective Caml Programming Language by Jason Hickey