Some miscellaneous functions in Elixir to start to get used to the syntax and functional programming style.
If available in Hex, the package can be installed as:
- Add
misc
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:misc, "~> 0.1.0"}]
end
```
- Ensure
misc
is started before your application:
```elixir
def application do
[applications: [:misc]]
end
```