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
miscto your list of dependencies inmix.exs:
```elixir
def deps do
[{:misc, "~> 0.1.0"}]
end
```
- Ensure
miscis started before your application:
```elixir
def application do
[applications: [:misc]]
end
```