Effekt Language

A research language with effect handlers and lightweight effect polymorphism

Try it yourself!
def eager[R] { p: R / { Flip, Fail, Error } } = try {
  Success(p())
} with Flip { () =>
  resume(true) match {
    case Failure(msg) => resume(false)
    case Success(res) => Success(res)
    case ParseError(msg) => ParseError(msg)
  }
} with Fail { (msg) => Failure(msg)
} with Error { (msg) => ParseError(msg) }
Full example on github

Effekt is a research-level language — use at your own risk! While we are heavily working on it, there are probably many bugs and many things will change in the future. Of course, we are happy if you try it out and report your experience with it.

Have fun!

Effect Handlers

(Algebraic) effect handlers let you define advanced control-flow structures like generators as user libraries. Those libraries can be seamlessly composed.

Learn More

Effect Safety

A type- and effect system that does not get into your way. Rely on a simple, yet powerful effect system that guarantees all effects to be handled.

Learn More

Lightweight Effect Polymorphism

No need to understand effect polymorphic functions or annotate them. Explicit effect polymorphism simply does not exist.

Learn More

Getting Started

If you are interested in the Effekt language, we have a few things to get you started:

Quick Guides

To get a first impression of the distinguishing features, read the quick-guides on this page (effect handlers, effect safety, effect polymorphism).

Try Online

To play around with the language, you can use the online editor.

Watch the Talks

We collected talks and demos about various aspects of the Effekt language in this Youtube playlist.

Installation Guide

To install Effekt and try the examples on your own computer you can follow the installation instructions.

Read the Papers

To understand the theory and concepts behind Effekt, you can read about design considerations, or read the academic papers.

Effect Handlers

The Effekt language comes with support for effect handlers (also known as algebraic effects).

Effects Generalize Exceptions

Effect handlers are exception handlers on steroids! Like with exceptions, we first define the type of the exception. In Effekt, a declaration like Yield is called an effect signature.

Calling an effect operation (with do Yield(42)) is like throwing an exception. It transfers the control-flow to the handler that catches (or "handles") the effect. We can also send values to the handler (here n).

effect Yield(n: Int): Bool

def example() = {
  var produce = true;
  var n = 0;
  while (produce) {
    produce = do Yield(n)
    n = n + 1
  }
  println("done")
}

Effect Handlers Can Resume

So what's new? Effect handlers now can also resume the program that called the effect!

In our example, we handle the Yield effect by printing the number that was sent. Similar to generators, we also resume at the original call to Yield!

Our example is type-safe: By declaring Yield to take an integer and return a boolean, at the handler we know that we receive integers and have to call resume with a boolean value.

Learn More
try { example() } with Yield { n =>
  println(n); resume(n < 3)
}

Effect Safety

Effect handlers are great, but it is easy to forget handling an effect. This is why the Effekt language comes with a static effect system that tells you where you forgot to handle something.

Effects are Part of the Type

The example uses a Raise effect to signal that something went wrong. This can be seen in the return type of divide:

//      effect set
//       vvvvvvvvv
   Int / { Raise }
// ^^^
// return type

The type says that divide will produce an integer, but it also requires Raise to be handled at the call-site! We use curly braces to say that it is a set of effects.

effect Raise(msg: String): Unit

def divide(n: Int, m: Int): Int / { Raise } =
  if (m == 0) {
    do Raise("Cannot divide by zero"); 0
  } else {
    n / m
  }

Effects are Checked

Trying to define a function like typeError that claims it requires no effects leads to a static type error!

Tip. Click "edit" to observe the type error and try to fix it by deleting the type annotated on typeError. Hover over typeError to inspect the inferred type.
def typeError(): Int / {} = divide(4, 0)
//                          ^^^^^^^^^^^^
//                 Unhandled effects: Raise

Handling Effects

Only programs that do not have any effects left can be executed.

We can for instance handle the Raise effect by printing the message and returning 42 as default value.

Learn More
try { divide(4, 0)} with Raise { msg =>
  println(msg); 42
}

Lightweight Effect Polymorphism

Tracking effects statically in the type is a great way to achieve safety. However, often, as soon as you start writing higher-order functions the type- and effect system starts to get into your way.

Not so in Effekt! It features a new form of effect polymorphism, which we call contextual effect polymorphism.

Effect Polymorphism

A (higher-order) function is effect polymorphic, if it can be used with different argument functions, independent on the effects those argument functions use.

Maybe one of the most famous higher-order functions is map on lists. We can invoke map with different argument functions (called blocks in Effekt).

In our examples, we call the same map function with different blocks that (a) do not use effects, (b) use built-in effects (println), (c) use user-defined effects (Raise).

You can notice that the last example cannot be run, since it still has unhandled effects Raise.

  import immutable/list
  
[1, 2, 3].map { x => x * 2 }
[1, 2, 3].map { x => println(x) }
[1, 2, 3].map { x => if (x > 2) do Raise("") else () }

Contextual Effect Polymorphism

In Effekt, the function map has the signature:

//          value argument  block argument
//            vvvvvvvvvv  vvvvvvvvvvvvvvvvvv
def map[A, B](l: List[A]) { f: A => B / {} }: List[B] / {}
//                                      ^^              ^^
//                                   no effects!     no effects!

The function map takes a value argument l and what we call a block argument f. For programmers familiar with effect-systems / effect polymorphism, this signature might come with a surprise: Neither the block argument, nor the overall result type mention any effects!

In Effekt, we read the signature of map as follows:

"Given a list and a block f, map cannot handle any effects of f. Also map itself does not require handling of any effects."

If block arguments, however, do use effects, those have to be handled at the call-site:

try {
  [1, 2, 3, 4].map { x => println(x); if (x > 2) do Raise("abort") else () }
  println("done")
} with Raise { msg => println("abort") }

Here, the block uses the Raise effect, which is handled at the call-site of map.

Learn More