Epigram (programming language)


Epigram is a functional programming language with dependent types. Epigram also refers to the IDE usually packaged with the language. Epigram's type system is strong enough to express program specifications. The goal is to support a smooth transition from ordinary programming to integrated programs and proofs whose correctness can be checked and certified by the compiler. Epigram exploits the propositions as types principle, and is based on intuitionistic type theory.
The Epigram prototype was implemented by Conor McBride based on joint work with James McKinna. Its development is continued by the Epigram group in Nottingham, Durham, St Andrews and Royal Holloway in the UK. The current experimental implementation of the Epigram system is freely available together with a user manual, a tutorial and some background material. The system has been used under Linux, Windows and Mac OS X.
It is currently unmaintained, and version 2, which was intended to implement Observational Type Theory, was never officially released but exists in GitHub. The design of Epigram and Epigram 2 have inspired the development Agda, Idris, and Coq.

Syntax

Epigram uses a two-dimensional, natural deduction style syntax, with a LaTeX version and an ASCII version. Here are some examples from The Epigram Tutorial:

Examples

The natural numbers

The following declaration defines the natural numbers:
 

The declaration says that Nat is a type with kind * and two constructors: zero and suc. The constructor suc takes a single Nat argument and returns a Nat. This is equivalent to the Haskell declaration "data Nat = Zero | Suc Nat".
In LaTeX, the code is displayed as:
The horizontal-line notation can be read as "assuming is true, we can infer that is true." For example, "assuming n is of type Nat, then suc n is of type Nat." If nothing is on the top, then the bottom statement is always true: "zero is of type Nat."

Recursion on naturals

...And in ASCII:
NatInd : all P : Nat -> * => P zero ->
->
all n : Nat => P n
NatInd P mz ms zero => mz
NatInd P mz ms => ms n

Addition

...And in ASCII:
plus x y <= rec x 

Dependent types

Epigram is essentially a typed lambda calculus with generalized algebraic data type extensions, except for two extensions. First, types are first-class entities, of type ; types are arbitrary expressions of type, and type equivalence is defined in terms of the types' normal forms. Second, it has a dependent function type; instead of,, where is bound in to the value that the function's argument eventually takes.
Full dependent types, as implemented in Epigram, are a powerful abstraction. A sample of the new formal specification capabilities dependent types bring may be found in The Epigram Tutorial.