Cookbook

A collection of examples of how to solve particular problems with Eff

Partial Interpretation

It’s common to want to use different effects in different parts of a program. Some effects, like error handling or logging, may extend through the whole of our program. However we may want to include additional effects, like state, within one part.

The example below shows how we can do this

`> Right((6,List(counter == 4, counter == 5, counter == 6)))`