<!-- vim: set syntax=markdown: -->

# Filtering & Mapping Data

## Getting started

```elixir
Mix.install([{:matcha, github: "christhekeele/matcha", tag: "stable"}])
IO.puts("Installed matcha version: #{Application.spec(:matcha, :vsn)}")
```

```elixir
require Matcha
```

```elixir
spec =
  Matcha.spec do
    {x, y, z} -> {x, y, z}
  end
```
