Packages

Diet is a DSL for writing your program logic as a sequence of trivial transformations. See https://github.com/pragdave/diet_examples for some example code, and https://www.youtube.com/watch?v=L1-amhlGk7c for a talk that contains examples of Diet in action.

Current section

Files

Jump to
diet README.md
Raw

README.md

# Reducer Machine
An experiment in structuring applications as cooperating sets of state
machines, where each state machine is a sequence of reducers triggered
by pattern matches.
## Installation
```elixir
def deps do
[
{:reducer_machine, "~> 0.1.0"}
]
end
```