Misc

Some arithmetic functions in Elixir to start to get used to the syntax. Also includes a SumList module, which uses recursion to sum numbers in a list.

Installation

If available in Hex, the package can be installed as:

  1. Add misc to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:misc, "~> 0.1.0"}]
end
```
  1. Ensure misc is started before your application:
```elixir
def application do
  [applications: [:misc]]
end
```